body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.header-button {
  background-color: #bcd9fe;
  color: rgb(0, 0, 0);
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.header-button:hover {
  background-color: #dce7f5;
}

.header {
  background-color: #e0e0e0;
  width: 100%;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #ccc;
}

.header h1 {
  margin: 0;
  font-size: 2rem;
  color: #2c3e50;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  gap: 30px;
  background: #cfcfcf;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  justify-content: center;
}

.image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-width: 600px;
}

.content {
  flex: 1 1 500px;
  max-width: 500px;
}

.content h2 {
  color: #00796b;
  margin-top: 50px;
}

.content ul {
  padding-left: 50px;
  list-style-type: disc;
}

.content li {
  margin-bottom: 8px;
}

.footer {
  width: 100%;
  background-color: #dce7f5;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.footer-left,
.footer-center {
  text-align: center;
  flex: 0 1 300;
  min-width: 300px;
}

.footer-right {
  word-wrap: break-word;
  /* word-break: break-all; */
  text-align: center;
  padding: 30px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 5px;
}

.footer-slogan {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.footer p {
  margin: 0;
}

.footer-center ul {
  text-align: center;
  list-style: none;
  padding: 0;
}

.footer-center ul li {
  margin: 25px 0;
}

.footer-center ul li a {
  color: #333;
  text-decoration: none;
}

.footer-center ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.footer-social-icons img {
  width: 26px;
  height: 26px;
  margin-right: 15px;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .footer-center,
  .footer-right {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-center ul {
    list-style: none;
    padding: 0;
  }

  .footer-center li {
    margin-bottom: 8px;
  }

  .footer-center a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
  }

  .footer-right {
    word-break: break-word;
  }

  .header-buttons {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    padding-top: 50px;
  }

  .header-buttons h1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    text-align: center;
  }

  .header-button {
    font-size: 13px;
    padding: 8px 12px;
    z-index: 1;
  }
  .container {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .image {
    order: 2;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .content {
    order: 1;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .image img {
    max-width: 100%;
  }

  .content {
    padding: 0 10px;
  }
}
@media (max-width: 1000px) {
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .footer-slogan {
    margin: 20px 0 !important;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .content {
    order: 1;
    font-size: 0.95rem;
    width: 100%;
    padding: 0 10px;
  }

  .image {
    order: 2;
    width: 100%;
    margin-top: 15px;
  }

  .image img {
    max-width: 100%;
  }

  .content h2 {
    font-size: 1.1rem;
  }
}
