 :root {
     --primary-color: #8FBC8F;
     --primary-dark: #6E966E;
     --secondary-color: #F9F9F9;
     --text-color: #333333;
     --light-text: #777777;
     --white: #FFFFFF;
     --accent: #D8A48F;
     --font-main: 'Open Sans', sans-serif;
     --font-heading: 'Montserrat', sans-serif;
     --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     --transition: all 0.3s ease;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-main);
     color: var(--text-color);
     line-height: 1.6;
     background-color: var(--white);
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--font-heading);
     font-weight: 600;
     color: var(--text-color);
     margin-bottom: 1rem;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .btn {
     display: inline-block;
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.9rem;
     cursor: pointer;
     border: 2px solid transparent;
     transition: var(--transition);
 }

 .btn-primary {
     background-color: var(--primary-color);
     color: var(--white);
 }

 .btn-primary:hover {
     background-color: var(--primary-dark);
     transform: translateY(-2px);
 }

 .btn-outline {
     border-color: var(--white);
     color: var(--white);
     background: transparent;
 }

 .btn-outline:hover {
     background-color: var(--white);
     color: var(--text-color);
 }

 section {
     padding: 80px 0;
 }

 .section-header {
     text-align: center;
     margin-bottom: 50px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }

 .section-header h2 {
     font-size: 2.2rem;
     margin-bottom: 15px;
     position: relative;
     display: inline-block;
 }

 .section-header h2::after {
     content: '';
     display: block;
     width: 60px;
     height: 3px;
     background-color: var(--primary-color);
     margin: 10px auto 0;
 }

 .section-header p {
     color: var(--light-text);
     font-size: 1.1rem;
 }

 .hidden {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .visible {
     opacity: 1;
     transform: translateY(0);
 }

 header {
     background-color: var(--white);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     height: 80px;
     display: flex;
     align-items: center;
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .logo {
     font-family: var(--font-heading);
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary-color);
 }

 .nav-menu {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .nav-menu a {
     font-size: 0.95rem;
     font-weight: 500;
 }

 .nav-menu a:hover {
     color: var(--primary-color);
 }

 .mobile-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
 }

 #hero {
     background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/hero.png') no-repeat center center/cover;
     height: 100vh;
     display: flex;
     align-items: center;
     text-align: center;
     color: var(--white);
     margin-top: 0;
     padding-top: 80px;
 }

 .hero-content h1 {
     font-size: 3rem;
     color: var(--white);
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .hero-content p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .hero-icons {
     margin-bottom: 30px;
     font-size: 2rem;
     display: flex;
     justify-content: center;
     gap: 30px;
 }

 .hero-btns {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .about-text ul {
     margin-top: 20px;
 }

 .about-text li {
     margin-bottom: 10px;
     display: flex;
     align-items: center;
 }

 .about-text li i {
     color: var(--primary-color);
     margin-right: 10px;
 }

 .about-img img {
     border-radius: 10px;
     box-shadow: var(--shadow);
 }

 #directions {
     background-color: var(--secondary-color);
 }

 .grid-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .card {
     background-color: var(--white);
     padding: 30px;
     border-radius: 10px;
     box-shadow: var(--shadow);
     text-align: center;
     transition: var(--transition);
 }

 .card:hover {
     transform: translateY(-5px);
 }

 .card-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 20px;
 }

 .card h3 {
     margin-bottom: 15px;
 }

 .schedule-table {
     width: 100%;
     border-collapse: collapse;
     background-color: var(--white);
     box-shadow: var(--shadow);
     border-radius: 10px;
     overflow: hidden;
 }

 .schedule-table th,
 .schedule-table td {
     padding: 15px;
     text-align: center;
     border-bottom: 1px solid #eee;
 }

 .schedule-table th {
     background-color: var(--primary-color);
     color: var(--white);
 }

 .schedule-table tr:last-child td {
     border-bottom: none;
 }

 .schedule-note {
     text-align: center;
     margin-top: 20px;
     color: var(--light-text);
     font-size: 0.9rem;
 }

 .benefit-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .benefit-icon {
     width: 80px;
     height: 80px;
     background-color: rgba(143, 188, 143, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     font-size: 2rem;
     margin-bottom: 20px;
 }

 .instructor-card {
     background-color: var(--white);
     border-radius: 10px;
     overflow: hidden;
     box-shadow: var(--shadow);
     text-align: center;
 }

 .instructor-img {
     height: 300px;
     overflow: hidden;
 }

 .instructor-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .instructor-info {
     padding: 20px;
 }

 .instructor-social {
     margin-top: 15px;
 }

 .instructor-social a {
     margin: 0 5px;
     color: var(--light-text);
     font-size: 1.2rem;
 }

 .instructor-social a:hover {
     color: var(--primary-color);
 }

 #pricing {
     background-color: var(--secondary-color);
 }

 .price-card {
     background-color: var(--white);
     padding: 40px 30px;
     border-radius: 10px;
     box-shadow: var(--shadow);
     text-align: center;
     position: relative;
 }

 .price-card.featured {
     border: 2px solid var(--primary-color);
     transform: scale(1.05);
 }

 .price {
     font-size: 2.5rem;
     color: var(--primary-color);
     font-weight: 700;
     margin: 20px 0;
 }

 .price-features {
     margin-bottom: 30px;
 }

 .price-features li {
     margin-bottom: 10px;
 }

 .review-card {
     background-color: var(--secondary-color);
     padding: 30px;
     border-radius: 10px;
     position: relative;
 }

 .stars {
     color: #FFD700;
     margin-bottom: 15px;
 }

 .review-author {
     margin-top: 20px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 15px;
 }

 .gallery-item {
     height: 250px;
     overflow: hidden;
     border-radius: 10px;
     position: relative;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 .faq-item {
     background-color: var(--white);
     border-bottom: 1px solid #eee;
     padding: 20px;
 }

 .faq-question {
     font-weight: 600;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-answer {
     margin-top: 15px;
     color: var(--light-text);
     display: none;
 }

 .faq-item.active .faq-answer {
     display: block;
 }

 .faq-item.active .faq-question i {
     transform: rotate(180deg);
 }

 .contact-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
 }

 .contact-form input,
 .contact-form textarea,
 .contact-form select {
     width: 100%;
     padding: 12px;
     margin-bottom: 20px;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-family: inherit;
 }

 .map-container {
     height: 400px;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     border: 0;
 }

 footer {
     background-color: #2c3e50;
     color: var(--white);
     padding: 50px 0 20px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-col h4 {
     color: var(--white);
     margin-bottom: 20px;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col a:hover {
     color: var(--primary-color);
 }

 .copyright {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
     color: #aaa;
 }

 .msg-box {
     padding: 15px;
     border-radius: 5px;
     margin-bottom: 20px;
     display: none;
 }

 .msg-success {
     background-color: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
 }

 .msg-error {
     background-color: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
 }

 @media (max-width: 992px) {
     .hero-content h1 {
         font-size: 2.5rem;
     }

     .about-content,
     .contact-wrapper {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .nav-menu {
         display: none;
         flex-direction: column;
         position: absolute;
         top: 80px;
         left: 0;
         width: 100%;
         background-color: var(--white);
         padding: 20px;
         box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
     }

     .nav-menu.active {
         display: flex;
     }

     .mobile-toggle {
         display: block;
     }

     .hero-content h1 {
         font-size: 2rem;
     }

     .price-card.featured {
         transform: none;
     }
 }

 .page {
     padding: 120px 0 80px 0;
 }

 .page h1,
 .page h2,
 .page h3 {
     font-family: 'Montserrat', sans-serif;
     color: #2c3e50;
 }

 .page h1 {
     margin-bottom: 20px;
     border-bottom: 2px solid #8FBC8F;
     padding-bottom: 10px;
 }

 .page h2 {
     margin-top: 30px;
     margin-bottom: 15px;
     font-size: 1.3rem;
     border-left: 4px solid #8FBC8F;
     padding-left: 10px;
 }

 .page h3 {
     font-size: 1.1rem;
     margin-top: 20px;
     margin-bottom: 10px;
     color: #555;
 }

 .page ul {
     margin-bottom: 15px;
 }

 .page li {
     margin-bottom: 8px;
 }

 .warning {
     background-color: #fff3cd;
     color: #856404;
     padding: 20px;
     border-left: 5px solid #ffeeba;
     margin: 25px 0;
     border-radius: 4px;
 } .cookie-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
        .cookie-table th, .cookie-table td { border: 1px solid #ddd; padding: 12px; text-align: left; }
        .cookie-table th { background-color: #f2f2f2; font-weight: 600; }