    /* GLOBAL STYLES */
    :root {
      --primary: #C85D44;
      --secondary: #2A3B90;
      --accent: #F0B429;
      --background: #F9F4ED;
      --text: #1A1D1A;
      --white: #FFFFFF;
      --light-gray: #EBEBEB;
      --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Lora', serif;
      color: var(--text);
      background-color: var(--background);
      line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--text);
    }
    
    .accent-font {
      font-family: 'Ubuntu', sans-serif;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    .btn {
      display: inline-block;
      background-color: var(--primary);
      color: var(--white);
      padding: 0.8rem 1.5rem;
      border-radius: 30px;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }
    
    .btn:hover {
      background-color: #b04a34;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .btn-secondary {
      background-color: var(--secondary);
    }
    
    .btn-secondary:hover {
      background-color: #232f73;
    }
    
    .btn-outline {
      background-color: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    
    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .section {
      padding: 5rem 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }
    
    .section-title::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent);
    }
    
    .text-center {
      text-align: center;
    }
    
    /* HEADER STYLES */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
      background-color: transparent;
    }
    
    .header.scrolled {
      background-color: var(--white);
      box-shadow: var(--box-shadow);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    
    
    .logo-text {
      font-family: 'Ubuntu', sans-serif;
      font-size: 2.3rem;
      font-weight: 700;
      color: var(--primary);
      margin-left: 0.5rem;
    }
    
    .nav-menu {
      display: flex;
      list-style: none;
    }
    
    .nav-link {
      margin: 0 1rem;
      text-decoration: none;
      color: var(--text);
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      transition: all 0.3s ease;
      font-size: 19px;
      position: relative;
    }
    
    .nav-link:hover {
      color: var(--primary);
    }
    
    .nav-link::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .nav-cta {
      margin-left: 1.5rem;
    }
    
    .hamburger {
      display: none;
      cursor: pointer;
    }
    
    .hamburger-line {
      width: 25px;
      height: 3px;
      background-color: var(--text);
      margin: 5px 0;
      transition: all 0.3s ease;
    }
    
    /* HERO SECTION STYLES */
    .hero {
      position: relative;
      /* background-image: url("images/ma2.jpg"); */
        /* background-size:auto; */
      height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1600/900') center/cover no-repeat;
      display: flex;
      align-items: center;
      text-align: center;
      color: var(--white);
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    .hero-title {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      color: var(--white);
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      font-weight: 400;
    }
    
    .hero-cta {
      margin-top: 2rem;
    }
    
    /* MISSION SECTION STYLES */
    .mission {
      padding: 5rem 0;
      background-color: var(--white);
    }
    
    .mission-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    
    .mission-title {
      color: var(--primary);
      margin-bottom: 1.5rem;
    }
    
    .mission-text {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }
    
    /* CULTURES SECTION STYLES */
    .cultures {
      padding: 5rem 0;
    }
    
    .cultures-grid {
      display: flex;
      overflow-x: auto;
      padding-bottom: 1.5rem;
      margin-bottom: 2rem;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    .cultures-grid::-webkit-scrollbar {
      display: none;
    }
    
    .culture-card {
      flex: 0 0 300px;
      margin-right: 1.5rem;
      background-color: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: all 0.3s ease;
    }
    
    .culture-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }
    
    .culture-image {
      height: 300px;
      width: 100%;
      object-fit:fill;
    }
    
    .culture-content {
      padding: 1.5rem;
    }
    
    .culture-title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    
    .culture-region {
      font-size: 0.9rem;
      color: var(--secondary);
      margin-bottom: 1rem;
      font-weight: 500;
    }
    
    .culture-description {
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }
    
    .view-all {
      text-align: center;
      margin-top: 2rem;
    }
    
    /* HOW IT WORKS SECTION STYLES */
    .how-it-works {
      padding: 5rem 0;
      background-color: var(--light-gray);
    }
    
    .steps {
      display: flex;
      justify-content: space-between;
      margin-top: 2rem;
    }
    
    .step {
      flex: 0 0 30%;
      text-align: center;
      padding: 2rem;
      background-color: var(--white);
      border-radius: 10px;
      box-shadow: var(--box-shadow);
      position: relative;
    }
    
    .step-number {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 60px;
      height: 60px;
      background-color: var(--secondary);
      color: var(--white);
      border-radius: 50%;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem auto;
    }
    
    .step-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--secondary);
    }
    
    .step-description {
      font-size: 0.95rem;
    }
    
    /* CTA SECTION STYLES */
    .cta-section {
      padding: 5rem 0;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1600/900') center/cover no-repeat;
      color: var(--white);
      text-align: center;
    }
    
    .cta-title {
      color: var(--white);
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }
    
    .cta-description {
      max-width: 700px;
      margin: 0 auto 2rem auto;
      font-size: 1.1rem;
    }
    
    /* TESTIMONIALS SECTION STYLES */
    .testimonials {
      padding: 5rem 0;
    }
    
    .testimonial-slider {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .testimonial {
      background-color: var(--white);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: var(--box-shadow);
      text-align: center;
      display: none;
    }
    
    .testimonial.active {
      display: block;
    }
    
    .testimonial-text {
      font-size: 1.1rem;
      font-style: italic;
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
      content: """;
      font-size: 3rem;
      line-height: 0;
      position: relative;
      color: var(--primary);
    }
    
    .testimonial-text::after {
      content: """;
    }
    
    .testimonial-author {
      font-weight: 700;
      color: var(--secondary);
    }
    
    .testimonial-role {
      font-size: 0.9rem;
      color: var(--text);
      opacity: 0.8;
    }
    
    .testimonial-nav {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }
    
    .testimonial-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--light-gray);
      margin: 0 5px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .testimonial-dot.active {
      background-color: var(--primary);
    }
    
    /* CULTURE QUIZ SECTION */
    .culture-quiz {
      padding: 5rem 0;
      background-color: var(--light-gray);
    }
    
    .quiz-container {
      max-width: 800px;
      margin: 0 auto;
      background-color: var(--white);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: var(--box-shadow);
    }
    
    .quiz-title {
      text-align: center;
      margin-bottom: 2rem;
      color: var(--secondary);
    }
    
    .quiz-description {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .quiz-btn {
      display: block;
      width: 200px;
      margin: 0 auto;
    }
    
    /* FOOTER STYLES */
    .footer {
      background-color: var(--text);
      color: var(--white);
      padding: 4rem 0 2rem 0;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    .footer-logo {
      color: var(--white);
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
      font-family: 'Ubuntu', sans-serif;
    }
    
    .footer-description {
      margin-bottom: 1.5rem;
      opacity: 0.8;
    }
    
    .footer-heading {
      color: var(--white);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }
    
    .footer-heading::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 30px;
      height: 2px;
      background-color: var(--accent);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-link {
      margin-bottom: 0.8rem;
    }
    
    .footer-link a {
      color: var(--white);
      text-decoration: none;
      opacity: 0.8;
      transition: all 0.3s ease;
    }
    
    .footer-link a:hover {
      opacity: 1;
      color: var(--accent);
    }
    
    .contact-info {
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
    }
    
    .contact-info i {
      margin-right: 0.8rem;
      color: var(--accent);
    }
    
    .social-links {
      display: flex;
      margin-top: 1.5rem;
    }
    
    .social-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      margin-right: 1rem;
      color: var(--white);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      background-color: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .copyright {
      opacity: 0.7;
      font-size: 0.9rem;
    }
    
    /* RESPONSIVE STYLES */
    @media (max-width: 992px) {
      .steps {
        flex-direction: column;
      }
      
      .step {
        flex: 0 0 100%;
        margin-bottom: 2rem;
      }
      
      .hero-title {
        font-size: 2.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .header-container {
        padding: 1rem;
      }
      
      .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.3s ease;
        z-index: 999;
      }
      
      .nav-menu.active {
        left: 0;
      }
      
      .nav-item {
        margin: 1.5rem 0;
      }
      
      .hamburger {
        display: block;
      }
      
      .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      
      .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
      }
      
      .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
      }
      
      .section {
        padding: 3rem 0;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 576px) {
      .hero-title {
        font-size: l;
      }
      
      .nav-cta {
        margin: 1rem 0 0 0;
      }
      
      .culture-card {
        flex: 0 0 260px;
      }
    }

    /* ANIMATIONS */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate {
      animation: fadeIn 0.8s ease forwards;
    }

    /* MODAL STYLES */
    .modal {
      display: none;
      position: fixed;
      z-index: 1100;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
      position: relative;
      background-color: var(--white);
      margin: 10% auto;
      padding: 2rem;
      width: 80%;
      max-width: 600px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      animation: fadeIn 0.3s ease;
    }

    .close-modal {
      position: absolute;
      right: 1.5rem;
      top: 1rem;
      font-size: 1.5rem;
      font-weight: bold;
      cursor: pointer;
    }

    .modal-title {
      margin-bottom: 1.5rem;
      color: var(--primary);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Lora', serif;
    }

    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-submit {
      margin-top: 1rem;
      width: 100%;
    }

    /* CULTURE DETAILS PAGE */
    .culture-detail-header {
      position: relative;
      height: 50vh;
      background-image: url("images/ma2.jpg");
        background-size: cover;
        background-position: center;
      /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1600/900') center/cover no-repeat; */
      display: flex;
      align-items: flex-end;
      color: var(--white);
    }
     .culture-detail-header1 {
      position: relative;
      height: 50vh;
      background-image: url("images/aiye.jpg");
        background-size: cover;
        background-position: center;
      display: flex;
      align-items: flex-end;
      color: var(--white);
    }
     .culture-detail-header2 {
      position: relative;
      height: 50vh;
      background-image: url("images/yoo.jpg");
        background-size: cover;
        background-position: center;
      display: flex;
      align-items: flex-end;
      color: var(--white);
    }
      .culture-detail-header3 {
      position: relative;
      height: 50vh;
      background-image: url("images/zuul.jpg");
        background-size: cover;
      display: flex;
      align-items: flex-end;
      color: var(--white);
    }
      .culture-detail-header4 {
      position: relative;
      height: 50vh;
      background-image: url("images/sambush.jpg");
        background-size: cover;
                background-position: center;

      display: flex;
      align-items: flex-end;
      color: var(--white);
    }

    .culture-detail-content {
      padding: 3rem 0;
    }

    .culture-detail-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
    }

    .ambassador-card {
      display: flex;
      background-color: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      margin-bottom: 2rem;
    }

    .ambassador-image {
      flex: 0 0 150px;
      /* object-fit: cover; */
      height: 300px;
      width: 250px;
    }
    .ambassador-image1 {
      flex: 0 0 150px;
      /* object-fit: cover; */
      height: 450px;
      width: 100%;
    }

    .ambassador-content {
      padding: 1.5rem;
    }

    .ambassador-name {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--secondary);
    }

    .ambassador-quote {
      font-style: italic;
      margin-top: 1rem;
      font-size: 0.95rem;
      color: var(--text);
      opacity: 0.9;
    }

    .experience-card {
      background-color: var(--white);
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      box-shadow: var(--box-shadow);
    }

    .experience-title {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--secondary);
    }

    .experience-duration {
      font-size: 0.9rem;
      color: var(--text);
      opacity: 0.7;
      margin-bottom: 1rem;
    }

    .book-sidebar {
      background-color: var(--white);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: var(--box-shadow);
    }

    .book-sidebar-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
    }

    @media (max-width: 768px) {
      .culture-detail-grid {
        grid-template-columns: 1fr;
      }
    }
.back-btn {
            display: inline-block;
            margin-top: 24px;
            padding: 10px 22px;
            background: #2a2d30;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
        }
        .back-btn:hover {
            background: #217dbb;
        }
   