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

        :root {
            --primary-color: #246151;
            --primary-dark: #1a4a3a;
            --secondary-color: #81d742;
            --accent-color: #7bdcb5;
            --text-primary: #1a2e1a;
            --text-secondary: #5a6b5a;
            --text-light: #8a9a8a;
            --bg-primary: #ffffff;
            --bg-secondary: #f8faf8;
            --bg-dark: #1a2e1a;
            --border-color: #e1e7e1;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --border-radius: 12px;
            --container-width: 1280px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            font-size: 16px;
            scroll-behavior: smooth;
        }

        /* Skip link for screen readers */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary-color);
            color: white;
            padding: 8px;
            z-index: 10000;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 6px;
        }

        /* Screen reader only text */
        .sr-only {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        /* Improved focus styles for accessibility */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus,
        select:focus {
            outline: 3px solid var(--primary-color);
            outline-offset: 2px;
        }

        /* Remove outline for mouse users, keep for keyboard users */
        a:focus:not(:focus-visible),
        button:focus:not(:focus-visible),
        input:focus:not(:focus-visible),
        textarea:focus:not(:focus-visible),
        select:focus:not(:focus-visible) {
            outline: none;
        }

        /* Enhanced focus for interactive elements */
        .btn-primary:focus,
        .btn-outline:focus,
        .cta-btn:focus {
            box-shadow: 0 0 0 3px rgba(36, 97, 81, 0.3);
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }
        @media screen {
              .container {
            margin: 0 auto;
            padding: 0 10px;
        }
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 20px 0;
            font-size: 14px;
            text-align: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            height: 44px;
            display: flex;
            align-items: center;
           
        }
        @media (max-width: 768px) {
            .top-bar {
                position: relative;
                padding: 10px 0;
                height: auto;
            }
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* .top-bar-text {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        } */

        .top-bar-highlight {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
        }

        .top-bar-small {
            font-size: 12px;
            opacity: 0.9;
            margin-top: 2px;
        }

        .top-bar-icon {
            font-size: 16px;
        }

        /* Modern Navigation - adjust for top bar */
        .navbar {
            position: fixed;
            top: 44px;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-lg);
        }

        .navbar.scrolled .nav-menu li a {
            color: var(--text-primary);
        }

        .navbar.scrolled .nav-menu li a:hover {
            color: var(--primary-color);
            background-color: rgba(36, 97, 81, 0.1);
        }

        .navbar.scrolled .nav-menu li a.active {
            color: var(--primary-color);
            background-color: rgba(36, 97, 81, 0.15);
        }

        /* Logo switching for dark/scrolled navbar */
        .navbar .logo-white {
            display: block;
        }

        .navbar .logo-dark {
            display: none;
        }

        .navbar.scrolled .logo-white {
            display: none;
        }

        .navbar.scrolled .logo-dark {
            display: block;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 24px;
            max-width: var(--container-width);
            margin: 0 auto;
            min-height: 60px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 700;
            font-size: 24px;
            font-family: 'Playfair Display', serif;
        }

        .logo i {
            font-size: 28px;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
            height: 60px;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            height: 100%;
            display: flex;
            align-items: center;
        }

        .nav-menu li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 15px;
            padding: 0 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            white-space: nowrap;
        }

        .nav-menu li a:hover {
            color: white;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .nav-menu li a.active {
            color: white;
            background-color: rgba(255, 255, 255, 0.25);
        }

        /* Navigation Language Toggle */
        .nav-menu li a.nav-language {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 8px 12px;
            gap: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .nav-menu li a.nav-language:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        .navbar.scrolled .nav-menu li a.nav-language {
            background: rgba(36, 97, 81, 0.1);
            color: var(--primary-color);
            border-color: rgba(36, 97, 81, 0.2);
        }

        .navbar.scrolled .nav-menu li a.nav-language:hover {
            background: rgba(36, 97, 81, 0.15);
            border-color: rgba(36, 97, 81, 0.3);
        }

        /* Navigation Actions Container */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .nav-actions.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Language Toggle Button */
        .language-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .language-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .navbar.scrolled .language-toggle {
            background: rgba(36, 97, 81, 0.1);
            color: var(--primary-color);
            border-color: rgba(36, 97, 81, 0.2);
        }

        .navbar.scrolled .language-toggle:hover {
            background: rgba(36, 97, 81, 0.15);
            border-color: rgba(36, 97, 81, 0.3);
        }

        .language-toggle i {
            font-size: 12px;
        }

        .nav-cta {
            background: var(--primary-color);
            color: white;
            padding: 0 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 36px;
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
            padding: 8px;
        }

        /* Hero Section with Video Background */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: transparent;
            padding-top: 104px;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Mobile video optimization */
        @media (max-width: 768px) {
            .hero-video {
                /* Ensure poster image shows properly on mobile */
                background: url('/img/video_poster.webp') center/cover no-repeat;
            }
            
            /* Fallback background for when video doesn't autoplay on mobile */
            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('/img/video_poster.webp') center/cover no-repeat;
                z-index: 0;
                opacity: 0;
                transition: opacity 0.3s ease;
            }
            
            /* Show fallback background when video is not playing */
            .hero:not(.video-playing)::before {
                opacity: 1;
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 24px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .hero .description {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            font-weight: 400;
            margin-bottom: 48px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
            padding: 16px 32px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid var(--primary-color);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        .btn-outline {
            background: transparent;
            color: white;
            padding: 16px 32px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: white;
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 24px;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Content Sections */
        .section {
            padding: 120px 0;
        }

        .section:nth-child(even) {
            background: var(--bg-secondary);
        }

        .section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 600px;
        }
        @media (max-width: 768px) {
    .section-content {
       
        gap: 30px!important;
      

    }
}

        .section-content.reverse {
            direction: rtl;
        }

        .section-content.reverse>* {
            direction: ltr;
        }

        .text-content {
            padding: 40px;
        }

        .section-label {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-label::before {
            content: '';
            width: 32px;
            height: 2px;
            background: var(--primary-color);
        }

        .text-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .text-content h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 20px;
            margin-top: 32px;
        }

        .text-content p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .image-container {
            position: relative;
            height: 600px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        /* Statistics Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 100px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            text-align: center;
        }

        .stat-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
        }

        .stat-item p {
            font-size: 18px;
            color: white;
        }

        /* Section CTA Buttons */
        .section-cta {
            margin-top: 32px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-color);
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
        }

        .cta-btn:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .cta-btn.secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

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

        .cta-btn i {
            font-size: 16px;
        }

        /* Team Section */

        /* ==============================
   Team Section - Base
============================== */
.team-section {
  background: var(--bg-primary);
  position: relative;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  min-height: 1.2em;
}

.team-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
.team-header {
  text-align: left;
  margin-bottom: 30px;
}
}
/* ==============================
   Card Layout
============================== */
.team-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.team-layout {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 600px;
}

/* ==============================
   Team Photo
============================== */
.team-photo {
  position: relative;
  overflow: hidden;
}

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

.team-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(36, 97, 81, 0.9));
  padding: 40px 30px 30px;
  color: #fff;
  text-align: center;
}

.team-photo-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-photo-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* ==============================
   Content Area
============================== */
.team-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ==============================
   Stats
============================== */
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==============================
   Leader Profile
============================== */
.leader-profile {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.leader-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.leader-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.leader-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.leader-tags span {
  background: rgba(36, 97, 81, 0.1);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  margin-right: 8px;
}

/* ==============================
   Detail Blocks
============================== */
.detail-block {
  margin-bottom: 20px;
}

.detail-block h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-block p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==============================
   Actions
============================== */
.leader-actions {
  display: flex;
  gap: 12px;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

/* ==============================
   Responsive Design
============================== */
@media (max-width: 1024px) {
  .team-layout {
    grid-template-columns: 1fr; /* 單欄 */
    min-height: auto;
  }
  .team-photo {
    height: 300px;
  }
  .team-content {
    padding: 30px 20px;
  }
  .team-stats {
    grid-template-columns: repeat(2, 1fr); /* 2欄 */
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .team-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .team-subtitle {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 12px;
  }
  .team-stats {
    grid-template-columns: 1fr; /* 單欄 */
    gap: 16px;
  }
  .stat-card {
    padding: 16px;
  }
  .leader-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .leader-photo {
    width: 70px;
    height: 70px;
  }
  .leader-name {
    font-size: 20px;
  }
  .leader-role {
    font-size: 13px;
  }
  .leader-tags span {
    font-size: 10px;
    padding: 3px 6px;
  }
  .detail-block h5 {
    font-size: 18px;
  }
  .detail-block p {
    font-size: 18px;
    line-height: 1.5;
  }
  .leader-actions {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 0;
  }
}

       
        /* Enhanced Testimonial */
        .testimonial-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }

        .testimonial-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }

        .testimonial-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .testimonial-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .testimonial-header {
            margin-bottom: 80px;
        }

        .testimonial-header .section-label {
            justify-content: center;
            margin-bottom: 20px;
        }

        .testimonial-header .section-label span {
            color: white;
        }

        .testimonial-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 600;
            color: white;
            margin-bottom: 24px;
        }

        .testimonial-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }

        .testimonial-quote-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        @media screen {
             .testimonial-quote-section {
          
            padding: 40px 20px 0 0;
            
        }
        }

        .testimonial-quote-section::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 50px;
            font-size: 80px;
            color: rgba(255, 255, 255, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-rating {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
            margin-left: 40px;
        }

        .star {
            color: #fbbf24;
            font-size: 18px;
        }

        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            color: white;
            text-align: center;
            font-style: italic;
            position: relative;
            z-index: 2;
            margin-left: 40px;
        }

        .testimonial-author-section {
            padding: 40px 50px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .author-info h4 {
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin-bottom: 4px;
        }

        .author-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: var(--bg-secondary);
            padding: 120px 0;
        }

        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .form-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .form-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .contact-form {
            background: var(--bg-primary);
            padding: 48px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--bg-primary);
            color: var(--text-primary);
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        .form-group select {
            background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            padding-right: 48px;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(36, 97, 81, 0.1);
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            background: var(--primary-color);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn i {
            font-size: 18px;
        }

        .form-note {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 16px;
            text-align: center;
        }

        /* Footer */
        .footer {
            background: #f5f5f5;
            color: var(--text-primary);
            padding: 80px 0 0;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 60px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .footer-brand {
            flex: 1;
            max-width: 400px;
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--primary-color);
        }

        .footer-brand p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        .footer-contact-info {
            flex: 1;
            max-width: 400px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }

        .footer-contact-item i {
            color: var(--primary-color);
            font-size: 18px;
            margin-top: 2px;
            min-width: 18px;
        }

        .footer-contact-item div h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .footer-contact-item div p {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0;
        }

        .footer-bottom {
            background: var(--primary-color);
            border-top: none;
            padding: 32px 0;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            width: 100vw;
        }

        .footer-bottom-content {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-bottom-left p {
            color: white;
            font-size: 14px;
            margin: 0;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            transform: translateY(-2px);
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .fade-in {
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                position: sticky;
                top: 0;
                z-index: 1000;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                box-shadow: var(--shadow-lg);
            }
            
            .navbar .nav-menu li a {
                color: var(--text-primary);
            }
            
            .navbar .nav-menu li a:hover {
                color: var(--primary-color);
                background-color: rgba(36, 97, 81, 0.1);
            }
            
            .navbar .nav-menu li a.active {
                color: var(--primary-color);
                background-color: rgba(36, 97, 81, 0.15);
            }
            
            .navbar .logo-white {
                display: none;
            }
            
            .navbar .logo-dark {
                display: block;
            }
            
            .menu-toggle {
                color: var(--text-primary) !important;
            }
            
            .hero {
                padding-top: 0;
            }
            
            .nav-menu {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 60px);
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                padding: 20px 0;
                transition: left 0.3s ease;
                box-shadow: var(--shadow-lg);
                gap: 0;
            }
            
            .nav-menu li {
                margin: 0;
                height: auto;
            }
            
            .nav-menu li a {
                color: white !important;
                padding: 16px 24px !important;
                font-size: 18px !important;
                height: auto !important;
            }
            
            .nav-menu li a:hover {
                color: white !important;
                background-color: rgba(255, 255, 255, 0.2) !important;
            }
            
            .nav-menu li a.active {
                color: white !important;
                background-color: rgba(255, 255, 255, 0.25) !important;
            }


            .top-bar-highlight {
                font-size: 1.2rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-actions {
                position: fixed !important;
                bottom: 24px !important;
                top: auto !important;
                right: 24px;
                background: rgba(0, 0, 0, 0.95);
                padding: 16px;
                border-radius: 8px;
                flex-direction: column;
                gap: 12px;
                backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                z-index: 1000;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.3s ease;
            }
            
            .nav-actions.show {
                opacity: 1;
                transform: translateY(0);
            }


            .language-toggle {
                width: 100%;
                justify-content: center;
                padding: 12px;
            }

            .menu-toggle {
                display: block;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-outline {
                /* width: 280px; */
                justify-content: center;
            }

            .section {
                padding: 80px 0;
            }

            .section-content {
                grid-template-columns: 1fr;
                gap: 60px;
                display: flex;
                flex-direction: column;
            }

            .section-content.reverse {
                direction: ltr;
                flex-direction: column;
            }
            
            .section-content .image-container {
                order: 1;
            }
            
            .section-content .text-content {
                order: 2;
            }

            .image-container {
                height: 400px;
            }
            
            /* Event Information Section - Mobile Layout */
            .fade-up[style*="grid-template-columns: 1fr 2fr"] {
                display: flex !important;
                flex-direction: column !important;
                gap: 40px !important;
            }
            
            .fade-up[style*="grid-template-columns: 1fr 2fr"] > div:first-child {
                order: 2;
            }
            
            .fade-up[style*="grid-template-columns: 1fr 2fr"] > div:last-child {
                order: 1;
            }
            
            /* Event Info Grid - Mobile */
            div[style*="grid-template-columns: repeat(2, 1fr)"] {
                display: flex !important;
                flex-direction: column !important;
                gap: 16px !important;
            }

            .text-content {
                padding: 20px;
            }
            
            /* Mobile - Align all titles to left, except hero title */
            h1, h2, h3, h4, h5, h6 {
                text-align: left !important;
            }
            
            .hero h1 {
                text-align: center !important;
            }
            
            .hero .description {
                text-align: center !important;
            }
            
            .text-content h2,
            .text-content h3 {
                text-align: left !important;
            }
            
            /* Center-aligned sections on desktop should be left-aligned on mobile */
            div[style*="text-align: center"] {
                text-align: left !important;
            }
            
            .section-label {
                justify-content: flex-start !important;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .form-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-form {
                padding: 32px 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-main {
                flex-direction: column;
                gap: 40px;
            }

            .footer-brand,
            .footer-contact-info {
                max-width: none;
            }

            .footer-brand h3 {
                font-size: 28px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .social-links {
                justify-content: center;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .team-content {
                padding: 40px 30px;
            }

            .team-actions {
                flex-direction: column;
            }
        }
.lastName{
    position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}