:root {
    --primary-color: #1E3F66;
    --secondary-color: #2E5984;
    --light-color: #E5F1FF;
    --accent-color: #4D7EA8;
    --dark-color: #0D2035;
    --white-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --text-color: #333333;
    --footer-color: #0E2439;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: 'Didot', serif;
    font-size: 28px;
    font-weight: bold;
    margin-left: 30px;
    color: var(--primary-color);
  }
  
  .navigation ul {
    display: flex;
    gap: 20px;
    margin-right: 30px;
  }
  
  .navigation ul li a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 6px 2px;
  }
  
  .navigation ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .navigation ul li a:hover:after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 30px;
  }
  
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  main {
    margin-top: 80px;
  }
  
  .hero {
    padding: 100px 0 80px;
    background-color: var(--light-color);
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
  }
  
  .hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 89, 132, 0.2), rgba(14, 36, 57, 0.3));
    z-index: 1;
  }
  
  .hero-content {
    flex: 1;
    min-width: 300px;
    padding: 0 50px;
    position: relative;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
  }
  
  .hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(77, 126, 168, 0.3);
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(77, 126, 168, 0.4);
  }
  
  .section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
  }
  
  .wave-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%231E3F66"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%232E5984"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%234D7EA8"/></svg>');
    background-size: cover;
  }
  
  .zigzag-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V7.23L48,69.79C96,132.34,192,257.45,288,245.39s192-178.24,288-178.24S672,132.34,768,170.47,864,170.47,960,132.34s192-132.34,240-158.81V0Z" fill="%234D7EA8"/></svg>');
    background-size: cover;
  }
  
  .diagonal-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 0L0 0 598.97 114.72 1200 0z" fill="%234D7EA8"/></svg>');
    background-size: cover;
  }
  
  .organic-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V6c0,21.6,291,111.46,741,110.26,445.39,3.6,459-88.3,459-110.26V0Z" fill="%234D7EA8"/></svg>');
    background-size: cover;
  }
  
  .geometric-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M892.25 114.72L0 0 0 120 1200 120 1200 0 892.25 114.72z" fill="%234D7EA8"/></svg>');
    background-size: cover;
  }
  
  section {
    padding: 80px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-family: 'Abril Fatface', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: var(--dark-color);
    max-width: 700px;
    margin: 20px auto 0;
  }
  
  .about {
    background-color: var(--white-color);
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .about-text p {
    margin-bottom: 15px;
  }
  
  .programs {
    background-color: var(--gray-color);
  }
  
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .program-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .program-image {
    height: 200px;
    overflow: hidden;
  }
  
  .program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .program-card:hover .program-image img {
    transform: scale(1.1);
  }
  
  .program-content {
    padding: 25px;
  }
  
  .program-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .program-content p {
    margin-bottom: 20px;
  }
  
  .program-content ul {
    border-top: 1px solid #eee;
    padding-top: 15px;
  }
  
  .program-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
  }
  
  .program-content ul li:before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
  }
  
  .advantages {
    background-color: var(--white-color);
  }
  
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .advantage-card {
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .advantage-card:hover {
    transform: translateY(-10px);
  }
  
  .advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .calendar {
    background-color: var(--gray-color);
  }
  
  .calendar-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .calendar-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .calendar-table {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .day-column {
    flex: 1;
    min-width: 130px;
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .day-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .class-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
  }
  
  .class-time {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 0.9rem;
  }
  
  .class-name {
    font-size: 1rem;
  }
  
  .contact {
    background-color: var(--white-color);
  }
  
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .contact-info {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .contact-info p {
    margin-bottom: 15px;
  }
  
  .contact-image {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
  }
  
  .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .form-check input {
    width: auto;
  }
  
  .form-check label {
    margin-bottom: 0;
  }
  
  .submit-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .submit-button:hover {
    background-color: var(--primary-color);
  }
  
  .footer {
    background-color: var(--footer-color);
    color: white;
    padding: 80px 0 20px;
  }
  
  .footer-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.footer-column h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-logo {
  font-family: 'Didot', serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: var(--light-color);
}

.thankyou-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}

.thankyou-content h1 {
  font-family: 'Abril Fatface', cursive;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.thankyou-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.thankyou-content .cta-button {
  margin-top: 30px;
}

.policy-section {
  padding: 100px 0;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  font-family: 'Abril Fatface', cursive;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.policy-meta {
  color: #777;
  font-size: 0.9rem;
}

.policy-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.policy-navigation {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  background-color: var(--gray-color);
  border-radius: 10px;
  padding: 20px;
}

.policy-navigation h3 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.policy-navigation ul li {
  margin-bottom: 10px;
}

.policy-navigation ul li a {
  display: block;
  padding: 5px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.policy-navigation ul li a:hover {
  background-color: rgba(77, 126, 168, 0.1);
  color: var(--primary-color);
}

.policy-text {
  flex: 3;
  min-width: 300px;
}

.policy-text section {
  margin-bottom: 40px;
  padding: 0;
}

.policy-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.policy-text p {
  margin-bottom: 15px;
}

.policy-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-text ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.policy-text ul li:before {
  content: '•';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.policy-list-item {
  background-color: var(--gray-color);
  border-radius: 10px;
  padding: 20px;
}

.policy-list-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.policy-footer {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .policy-navigation {
    position: static;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .navigation {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-content, .contact-content {
    flex-direction: column;
  }
  
  .policy-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 24px;
    margin-left: 15px;
  }
  
  .menu-toggle {
    margin-right: 15px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .about-text h3, .contact-info h3 {
    font-size: 1.5rem;
  }
  
  .policy-header h1 {
    font-size: 2rem;
  }
  
  .policy-text h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 375px) {
  .logo {
    font-size: 20px;
    margin-left: 10px;
  }
  
  .menu-toggle {
    margin-right: 10px;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
}