* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Common Styles */
  h1, h2, h3 {
    font-weight: 600;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
  }
  
  .gradient-btn {
    background: linear-gradient(90deg, #FFC857 0%, #FF6B6B 50%, #FF62A5 100%);
    color: white;
  }
  
  .outline-btn {
    background: white;
    border: 1px solid #ddd;
    color: #333;
  }
  
  .color-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
  }
  
  .center {
    justify-content: center;
  }
  
  .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }
  
  .orange {
    background-color: #FFC857;
  }
  
  .red {
    background-color: #FF6B6B;
  }
  
  .blue {
    background-color: #6B9FFF;
  }
  
  /* Header */
  header {
    padding: 15px 0;
    background: white;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 700;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  nav a {
    color: #666;
    font-size: 14px;
  }
  
  /* Hero Section */
  .hero {
    background-color: #4A57E8;
    color: white;
    padding: 80px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
  }
  
  .hero h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .hero p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
  }
  
  /* About Section */
  .about {
    padding: 80px 0 40px;
  }
  
  .about h2 {
    color: #4A57E8;
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .about-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .about-text {
    flex: 2;
  }
  
  .about-text p {
    margin-bottom: 20px;
  }
  
  .learning-box {
    flex: 1;
    background-color: #F8F9FF;
    padding: 30px;
    border-radius: 10px;
  }
  
  .learning-box h3 {
    color: #4A57E8;
    margin-bottom: 15px;
  }
  
  .team-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
  }
  
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Courses Section */
  .courses {
    padding: 60px 0;
    background-color: #F8F9FF;
  }
  
  .courses h2 {
    color: #4A57E8;
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .course-image {
    height: 180px;
    overflow: hidden;
  }
  
  .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .course-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
  }
  
  .course-card p {
    padding: 0 20px;
    color: #666;
  }
  
  .course-card .price {
    font-weight: 700;
    color: #4A57E8;
    padding: 10px 20px;
    font-size: 18px;
  }
  
  .course-card .btn {
    margin: 10px 20px 20px;
    font-size: 14px;
    background: linear-gradient(90deg, #FFC857 0%, #FF6B6B 50%, #FF62A5 100%);
    color: white;
  }
  
  /* Why Us Section */
  .why-us {
    padding: 80px 0;
    background-color: #4A57E8;
    color: white;
    text-align: center;
  }
  
  .why-us h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .reason-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
  }
  
  .reason-number {
    display: inline-block;
    background-color: white;
    color: #4A57E8;
    width: 40px;
    height: 30px;
    text-align: center;
    border-radius: 15px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .reason-card h3 {
    margin-bottom: 10px;
  }
  
  /* Contact Section */
  .contact {
    padding: 80px 0 40px;
    background-color: #F8F9FF;
    text-align: center;
  }
  
  .contact h2 {
    color: #4A57E8;
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .contact p {
    max-width: 800px;
    margin: 0 auto 30px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  form input,
  form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
  }
  
  form textarea {
    height: 150px;
    resize: none;
    border-radius: 20px;
  }
  
  form button {
    margin-top: 10px;
  }
  
  .team-photo {
    height: 300px;
    overflow: hidden;
  }
  
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Footer */
  footer {
    padding: 40px 0;
    background: white;
  }
  
  footer .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-logo {
    font-size: 24px;
    font-weight: 700;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-links a {
    color: #666;
    font-size: 14px;
  }
  
  .copyright {
    color: #666;
    font-size: 14px;
  }
  
  /* Cookie Popup */
  .cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 30px 20px;
    display: none;
  }
  
  .cookie-popup.show {
    display: block;
  }
  
  .cookie-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .cookie-icon {
    width: 60px;
    height: 60px;
    background-color: #F5A623;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    background-image: radial-gradient(circle, #8B4513 8px, transparent 8px),
                      radial-gradient(circle, #8B4513 8px, transparent 8px),
                      radial-gradient(circle, #8B4513 8px, transparent 8px);
    background-position: 15px 20px, 30px 15px, 45px 35px;
    background-repeat: no-repeat;
  }
  
  .cookie-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 10px;
    height: 10px;
    background-color: #8B4513;
    border-radius: 50%;
  }
  
  .cookie-content h3 {
    margin-bottom: 15px;
  }
  
  .cookie-content p {
    margin-bottom: 20px;
  }
  
  .cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .course-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
    }
    
    .course-grid,
    .reasons-grid {
      grid-template-columns: 1fr;
    }
    
    .hero h1 {
      font-size: 32px;
    }
    
    .hero h2 {
      font-size: 20px;
    }
    
    .cookie-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .cookie-buttons button {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 480px) {
    header .container {
      flex-direction: column;
      gap: 15px;
    }
    
    nav ul {
      justify-content: center;
    }
    
    .about h2,
    .courses h2,
    .why-us h2,
    .contact h2 {
      font-size: 28px;
    }
  }

  .main-section {
    padding: 60px 0;
    background-color: #F8F9FF;
  }