body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #fff;
  color: #1a3d2f;
}

.navbar {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(26, 61, 47, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  position: relative;
}

.navbar-logo {
  flex: 0 0 auto;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(26, 61, 47, 0.08);
}

.navbar-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.5rem;
  padding: 0;
}

.navbar-links li {
  margin: 0;
}

.navbar-links li a {
  text-decoration: none;
  color: #1a3d2f;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  display: block;
}

.navbar-links li a:hover {
  color: #d4af37;
  background: none;
}

.navbar-whatsapp a {
  color: #25d366;
  font-size: 1.5rem;
  margin-left: 0.5rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.navbar-whatsapp a:hover {
  color: #d4af37;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 1rem;
}

.navbar-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1a3d2f;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .navbar-container {
    padding: 0.5rem 0.5rem;
  }
  .navbar-links {
    gap: 0.7rem;
  }
}

@media (max-width: 700px) {
  .navbar-links {
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.2rem;
    padding: 1.5rem 1rem;
    display: none;
    box-shadow: 0 2px 8px rgba(26, 61, 47, 0.08);
  }
  .navbar-links.active {
    display: flex;
  }
  .navbar-toggle {
    display: flex;
  }
}

.hero-section {
  width: 100%;
  background: linear-gradient(90deg, #1a3d2f 60%, #d4af37 100%);
  color: #fff;
  padding: 3rem 0 3.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  min-height: 340px;
  gap: 2.5rem;
}

.hero-carousel-container {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 320px;
  max-width: 420px;
  position: relative;
}

.hero-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 0;
  margin: 0 auto;
}

.carousel-img {
  display: none;
  height: 320px;
  width: auto;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: opacity 0.8s;
  opacity: 0;
  z-index: 1;
}

.carousel-img.active {
  display: block;
  opacity: 1;
  z-index: 2;
}

.carousel-arrow {
  background: rgba(26, 61, 47, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s;
}
.carousel-arrow.left {
  left: -18px;
}
.carousel-arrow.right {
  right: -18px;
}
.carousel-arrow:hover {
  background: #d4af37;
  color: #1a3d2f;
}

.hero-content {
  flex: 1 1 0;
  max-width: 500px;
  text-align: left;
  margin: 0 0 0 2rem;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
}
.hero-btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.hero-btn {
  display: inline-block;
  background: #d4af37;
  color: #1a3d2f;
  font-weight: 700;
  padding: 0.8rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s, border 0.2s;
  border: 1px solid #d4af37;
  box-sizing: border-box;
}
.hero-btn:hover {
  background: #fff;
  color: #1a3d2f;
  border: 1px solid #d4af37;
}
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 1.5rem;
    min-height: 0;
  }
  .hero-content {
    margin: 0;
    text-align: center;
  }
  .hero-carousel-container {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .hero-carousel {
    width: 320px;
    height: 180px;
  }
  .carousel-img {
    height: 180px;
  }
}
@media (max-width: 700px) {
  .hero-section {
    padding: 2rem 0 2.5rem 0;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-carousel {
    width: 220px;
    height: 110px;
  }
  .carousel-img {
    height: 90px;
  }
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 3rem auto 2rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26, 61, 47, 0.08);
}
.about-content {
  flex: 2;
  min-width: 260px;
}
.about-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3d2f;
  margin-bottom: 1.2rem;
}
.about-content p {
  font-size: 1.15rem;
  color: #1a3d2f;
  margin-bottom: 1.2rem;
}
.about-features {
  list-style: disc inside;
  color: #1a3d2f;
  font-size: 1rem;
  margin: 0 0 0 1rem;
  padding: 0;
}
.about-features li {
  margin-bottom: 0.5rem;
}
.about-image {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 61, 47, 0.12);
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
  }
  .about-image img {
    max-width: 90vw;
  }
}

.services-section {
  background: #f7f7f7;
  padding: 3rem 0 3.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.services-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.services-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3d2f;
  margin-bottom: 1.2rem;
}
.services-content p {
  font-size: 1.15rem;
  color: #1a3d2f;
  margin-bottom: 2.2rem;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 61, 47, 0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-icon {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 1rem;
}
.service-card h2 {
  font-size: 1.2rem;
  color: #1a3d2f;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.service-card ul {
  list-style: disc inside;
  color: #1a3d2f;
  font-size: 1rem;
  margin: 0 0 0 1rem;
  padding: 0;
  text-align: left;
}
.service-card ul li {
  margin-bottom: 0.4rem;
}
.service-card p {
  color: #1a3d2f;
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}
.service-course {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 61, 47, 0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.18s;
}
.service-course:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(26, 61, 47, 0.13);
}
.service-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: transparent;
}
.service-img-alt {
  font-size: 3.2rem;
  color: #d4af37;
  margin-bottom: 1rem;
}
.service-info h2 {
  font-size: 1.1rem;
  color: #1a3d2f;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
}
.service-price {
  color: #d4af37;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.service-duration {
  color: #1a3d2f;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .service-card {
    max-width: 95vw;
  }
  .service-course {
    max-width: 95vw;
  }
}

.courses-section {
  background: #fff;
  padding: 3rem 0 3.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.courses-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.courses-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3d2f;
  margin-bottom: 1.2rem;
}
.courses-content p {
  font-size: 1.15rem;
  color: #1a3d2f;
  margin-bottom: 2.2rem;
}
.courses-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.course-group {
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 61, 47, 0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.course-group h2 {
  font-size: 1.2rem;
  color: #1a3d2f;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.course-group ul {
  list-style: none;
  color: #1a3d2f;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  text-align: left;
}
.course-group ul li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.course-price {
  color: #d4af37;
  font-weight: 700;
  font-size: 1rem;
}
.courses-note {
  margin-top: 1.5rem;
  color: #1a3d2f;
  font-size: 1rem;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  display: inline-block;
}
@media (max-width: 900px) {
  .courses-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .course-group {
    max-width: 95vw;
  }
}

/* CONTACT SECTION RESET START */
.contact-section {
  width: 100%;
  background: #f7f7f7;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  margin: 0;
}
.contact-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  min-height: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26, 61, 47, 0.1);
  overflow: hidden;
}
.contact-map {
  flex: 1 1 50%;
  min-width: 320px;
  min-height: 340px;
  background: #e6e6e6;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.contact-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 340px;
}
.contact-form-block {
  flex: 1 1 50%;
  padding: 2.5rem 2rem 2rem 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}
.contact-form-block h2 {
  font-size: 2rem;
  color: #1a3d2f;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group {
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid #d4af37;
  border-radius: 7px;
  font-size: 1rem;
  font-family: inherit;
  background: #f7f7f7;
  color: #1a3d2f;
  outline: none;
  transition: border 0.2s;
  resize: none;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #1a3d2f;
  background: #fff;
}
.contact-submit {
  background: #1a3d2f;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.contact-submit:hover {
  background: #d4af37;
  color: #1a3d2f;
}
.contact-info {
  margin-top: 2.2rem;
  width: 100%;
}
.contact-info p {
  margin: 0.2rem 0;
  color: #1a3d2f;
  font-size: 1rem;
}
.contact-info a {
  color: #d4af37;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.contact-info a:hover {
  color: #1a3d2f;
  border-bottom: 1px solid #d4af37;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .contact-map,
  .contact-form-block {
    min-width: 0;
    width: 100%;
    border-radius: 0;
  }
  .contact-form-block {
    padding: 2rem 1rem 1.5rem 1rem;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .contact-section {
    min-height: 0;
    padding: 0;
  }
  .contact-form-block h2 {
    font-size: 1.3rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 0.7rem 0.8rem;
  }
  .contact-submit {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}
/* CONTACT SECTION RESET END */

.footer {
  width: 100%;
  background: white;
  color: #1a3d2f;
  padding: 0.7rem 0 0.3rem 0;
  margin-top: auto;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer-logo-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo {
  height: 56px;
  width: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(26, 61, 47, 0.08);
}
.footer-contact p {
  margin: 0.2rem 0;
  font-size: 1rem;
}
.footer-contact a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-social {
  margin: 1rem 0 0.5rem 0;
}
.footer-social a {
  color: #25d366;
  font-size: 2rem;
  margin: 0 0.5rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #d4af37;
}
.footer-copy {
  margin-top: 0.2rem;
  font-size: 0.95rem;
  color: #1a3d2f;
}
@media (max-width: 700px) {
  .footer-content {
    padding: 0 1rem;
  }
  .footer-logo-contact {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }
  .footer-contact p {
    text-align: center;
  }
}
