    /* ===== CSS RESET & VARIABLES ===== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      /* Colors */
      --primary: #8B7355;
      --primary-light: #A08B70;
      --primary-dark: #6B5A45;
      --background: #FAF8F5;
      --foreground: #1A1A1A;
      --muted: #F5F2ED;
      --muted-foreground: #6B6B6B;
      --border: #E5E0D8;
      --card: #FFFFFF;
      --footer-bg: #2C2C2C;
      --footer-text: #E5E5E5;
      
      /* Typography */
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      
      /* Spacing */
      --section-padding: 80px 0;
      --container-max: 1200px;
      --container-padding: 24px;
      
      /* Transitions */
      --transition: all 0.3s ease;
    }

    /* ===== BASE STYLES ===== */
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 600;
      line-height: 1.2;
    }

    .section-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: 1rem;
      text-align: center;
    }

    .section-subtitle {
      color: var(--muted-foreground);
      text-align: center;
      max-width: 600px;
      margin: 0 auto 3rem;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 500;
      font-size: 0.95rem;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      font-family: var(--font-body);
    }

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

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

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

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

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

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

    /* ===== HEADER ===== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background-color: rgba(250, 248, 245, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }

    .header.scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

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

    .logo {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--foreground);
    }

    .logo span {
      color: var(--primary);
    }

    .nav-desktop {
      display: none;
    }

    .nav-desktop ul {
      display: flex;
      gap: 32px;
    }

    .nav-link {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--muted-foreground);
      transition: var(--transition);
      position: relative;
      text-transform: uppercase;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: var(--transition);
    }

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

    .nav-link:hover::after {
      width: 100%;
    }

    .header-cta {
      display: none;
    }

    .mobile-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .mobile-toggle span {
      width: 24px;
      height: 2px;
      background-color: var(--foreground);
      transition: var(--transition);
    }

    .mobile-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background-color: var(--background);
      padding: 24px;
      border-bottom: 1px solid var(--border);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .mobile-menu.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu ul {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .mobile-menu .nav-link {
      font-size: 1.1rem;
      padding: 8px 0;
    }

    .mobile-menu .btn {
      margin-top: 16px;
      width: 100%;
    }

    @media (min-width: 768px) {
      .nav-desktop {
        display: block;
      }

      .header-cta {
        display: block;
      }

      .mobile-toggle {
        display: none;
      }
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 140px;
      padding-bottom: 80px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
    }

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

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        to right,
        rgba(250, 248, 245, 0.95) 0%,
        rgba(250, 248, 245, 0.8) 50%,
        rgba(250, 248, 245, 0.4) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 650px;
      margin: 0 auto;
      text-align: center;
      padding: 40px 0;
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--muted-foreground);
      margin-bottom: 2.5rem;
      line-height: 1.8;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.2s forwards;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.4s forwards;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 1px solid var(--border);
      opacity: 0;
      animation: fadeUp 0.8s ease 0.6s forwards;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--primary);
      display: block;
    }

    .stat-label {
      font-size: 0.85rem;
      color: var(--muted-foreground);
      margin-top: 4px;
    }

    @media (max-width: 768px) {
      .hero-overlay {
        background: linear-gradient(
          to bottom,
          rgba(250, 248, 245, 0.95) 0%,
          rgba(250, 248, 245, 0.9) 100%
        );
      }

      .hero {
        padding-top: 110px;
        padding-bottom: 60px;
      }

      .hero-content {
        padding: 32px 0;
      }

      .hero-title {
        margin-bottom: 1.25rem;
      }

      .hero-subtitle {
        margin-bottom: 2.25rem;
      }

      .hero-buttons {
        gap: 14px;
      }

      .hero-stats {
        margin-top: 3rem;
        padding-top: 2.5rem;
        gap: 16px;
      }
    }

    /* ===== SECTION STYLES ===== */
    .section {
      padding: var(--section-padding);
    }

    .section-muted {
      background-color: var(--muted);
    }

    /* ===== WHY US SECTION ===== */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .feature-card {
      background-color: var(--card);
      padding: 32px;
      border-radius: 12px;
      border: 1px solid var(--border);
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      background-color: rgba(139, 115, 85, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .feature-icon svg {
      width: 24px;
      height: 24px;
      color: var(--primary);
    }

    .feature-card h3 {
      font-size: 1.25rem;
      margin-bottom: 12px;
    }

    .feature-card p {
      color: var(--muted-foreground);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ===== HOW IT WORKS ===== */
    .steps-container {
      position: relative;
    }

    .steps-line {
      display: none;
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background-color: var(--border);
    }

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

    .step-item {
      text-align: center;
      position: relative;
    }

    .step-icon {
      width: 64px;
      height: 64px;
      background-color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
    }

    .step-icon svg {
      width: 28px;
      height: 28px;
      color: white;
    }

    .step-item h3 {
      font-size: 1.15rem;
      margin-bottom: 10px;
    }

    .step-item p {
      color: var(--muted-foreground);
      font-size: 0.9rem;
      max-width: 280px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .steps-line {
        display: block;
      }

      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .steps-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* ===== INVESTOR OPPORTUNITIES ===== */
    .opportunities-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .opportunity-card {
      background-color: var(--card);
      padding: 28px;
      border-radius: 12px;
      border: 1px solid var(--border);
      transition: var(--transition);
    }

    .opportunity-card:hover {
      border-color: var(--primary);
    }

    .opportunity-card h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .opportunity-card p {
      color: var(--muted-foreground);
      font-size: 0.95rem;
      margin-bottom: 16px;
    }

    .opportunity-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 500;
      font-size: 0.9rem;
      transition: var(--transition);
    }

    .opportunity-link:hover {
      gap: 10px;
    }

    @media (min-width: 768px) {
      .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ===== SERVICES SECTION ===== */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .service-card {
      background-color: var(--card);
      padding: 24px;
      border-radius: 12px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 16px;
      transition: var(--transition);
    }

    .service-card:hover {
      transform: translateX(8px);
      border-color: var(--primary);
    }

    .service-icon {
      width: 48px;
      height: 48px;
      background-color: rgba(139, 115, 85, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
      color: var(--primary);
    }

    .service-content h3 {
      font-size: 1.1rem;
      margin-bottom: 4px;
    }

    .service-content p {
      color: var(--muted-foreground);
      font-size: 0.9rem;
    }

    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* ===== METHODOLOGY SECTION ===== */
    .methodology-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    .methodology-image {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .methodology-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .methodology-content h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: 1.5rem;
      text-align: left;
    }

    .methodology-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .methodology-item {
      display: flex;
      gap: 16px;
    }

    .methodology-check {
      width: 24px;
      height: 24px;
      background-color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .methodology-check svg {
      width: 14px;
      height: 14px;
      color: white;
    }

    .methodology-item h4 {
      font-size: 1.1rem;
      margin-bottom: 4px;
    }

    .methodology-item p {
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    @media (min-width: 1024px) {
      .methodology-wrapper {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ===== ABOUT SECTION ===== */
    .about-intro {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      margin-bottom: 64px;
      align-items: center;
    }

    .about-image {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .about-image img {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

    .about-text h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: 1.5rem;
      text-align: left;
    }

    .about-text p {
      color: var(--muted-foreground);
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .team-section h3 {
      font-size: 1.5rem;
      text-align: center;
      margin-bottom: 2rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .team-member {
      text-align: center;
    }

    .team-photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 16px;
      border: 3px solid var(--primary);
    }

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

    .team-member h4 {
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .team-member p {
      color: var(--muted-foreground);
      font-size: 0.85rem;
    }

    @media (min-width: 768px) {
      .team-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .team-photo {
        width: 120px;
        height: 120px;
      }
    }

    @media (min-width: 1024px) {
      .about-intro {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ===== TRAINING SECTION ===== */
    .training-card {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 20px;
      padding: 48px 32px;
      text-align: center;
      color: white;
    }

    .training-icon {
      width: 72px;
      height: 72px;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .training-icon svg {
      width: 36px;
      height: 36px;
      color: white;
    }

    .training-card h2 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      margin-bottom: 1rem;
    }

    .training-card p {
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto 2rem;
      line-height: 1.7;
    }

    /* ===== CONTACT SECTION ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

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

    .contact-icon {
      width: 48px;
      height: 48px;
      background-color: rgba(139, 115, 85, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 22px;
      height: 22px;
      color: var(--primary);
    }

    .contact-item h4 {
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .contact-item p,
    .contact-item a {
      color: var(--muted-foreground);
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .contact-item a:hover {
      color: var(--primary);
    }

    .contact-cta {
      background-color: var(--card);
      padding: 32px;
      border-radius: 16px;
      border: 1px solid var(--border);
      text-align: center;
    }

    .contact-cta h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .contact-cta p {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .contact-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (min-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-buttons {
        flex-direction: row;
        justify-content: center;
      }
    }

    /* ===== FOOTER ===== */
    .footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand .logo {
      color: white;
      margin-bottom: 16px;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 300px;
    }

    .footer-section h4 {
      font-size: 1rem;
      margin-bottom: 20px;
      color: white;
    }

    .footer-section ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      transition: var(--transition);
    }

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

    .footer-credentials {
      background-color: rgba(255, 255, 255, 0.05);
      padding: 20px;
      border-radius: 12px;
    }

    .footer-credentials h4 {
      font-size: 0.9rem;
      margin-bottom: 12px;
      color: white;
    }

    .footer-credentials p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.85rem;
      line-height: 1.6;
    }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
      }
    }

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

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== UTILITY CLASSES ===== */
    .text-center {
      text-align: center;
    }

    .mb-0 {
      margin-bottom: 0;
    }
