body {
        /* min-height property is often specific to a page's layout */
        min-height: 100vh; 
      }

      /* About Hero Section */
      .about-hero {
        padding: 180px 0 80px;
        background: #000;
        position: relative;
        overflow: hidden;
      }

      .about-hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: radial-gradient(
          circle at 80% 50%,
          rgba(189, 129, 95, 0.15) 0%,
          transparent 50%
        );
        pointer-events: none;
      }

      .about-hero-content {
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .about-hero-title {
        font-family: "Helvetica Neue", sans-serif;
        font-size: 96px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 24px;
        background: linear-gradient(180deg, #ffffff 0%, #bd815f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .about-hero-subtitle {
        font-family: "Inter", sans-serif;
        font-size: 28px;
        font-weight: 400;
        color: #999999;
        max-width: 800px;
        margin: 0 auto;
      }

      /* Mission Section */
      .mission-section {
        padding: 80px 0;
        background: #000;
      }

      .mission-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }

      .mission-text h2 {
        font-family: "Inter", sans-serif;
        font-size: 56px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 32px;
        background: linear-gradient(90deg, #ffffff 0%, #bd815f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .mission-text p {
        font-family: "Inter", sans-serif;
        font-size: 22px;
        line-height: 1.6;
        color: #cccccc;
        margin-bottom: 24px;
      }

      .mission-image {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
      }

      .mission-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 0.6s ease;
      }

      .mission-image:hover img {
        transform: scale(1.05);
      }

      /* Values Section */
      .values-section {
        padding: 80px 0;
        background: #000;
      }

      .values-title {
        text-align: center;
        margin-bottom: 60px;
      }

      .values-title h2 {
        font-family: "Inter", sans-serif;
        font-size: 64px;
        font-weight: 500;
        line-height: 1.2;
        background: linear-gradient(90deg, #ffffff 0%, #bd815f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
      }

      .value-card {
        background: linear-gradient(135deg, rgba(189, 129, 95, 0.05), rgba(0, 0, 0, 0.8));
        border: 2px solid rgba(189, 129, 95, 0.3);
        border-radius: 20px;
        padding: 48px 32px;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
      }

      .value-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(189, 129, 95, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
      }

      .value-card:hover::before {
        opacity: 1;
      }

      .value-card:hover {
        transform: translateY(-10px);
        border-color: #bd815f;
        box-shadow: 0 20px 40px rgba(189, 129, 95, 0.2);
      }

      .value-icon {
        font-size: 64px;
        margin-bottom: 24px;
        color: #bd815f;
      }

      .value-card h3 {
        font-family: "Helvetica Neue", sans-serif;
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 16px;
        color: #fff;
      }

      .value-card p {
        font-family: "Inter", sans-serif;
        font-size: 18px;
        line-height: 1.6;
        color: #cccccc;
      }

      /* Journey Section */
      .journey-section {
        padding: 80px 0;
        background: #000;
        position: relative;
      }

      .journey-content {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
      }

      .journey-content h2 {
        font-family: "Inter", sans-serif;
        font-size: 56px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 48px;
        background: linear-gradient(90deg, #ffffff 0%, #bd815f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .journey-timeline {
        position: relative;
        padding: 40px 0;
      }

      .timeline-item {
        margin-bottom: 60px;
        position: relative;
        padding-left: 60px;
      }

      .timeline-item::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        bottom: -60px;
        width: 2px;
        background: linear-gradient(180deg, #bd815f, transparent);
      }

      .timeline-item:last-child::before {
        display: none;
      }

      .timeline-dot {
        position: absolute;
        left: 10px;
        top: 10px;
        width: 20px;
        height: 20px;
        background: #bd815f;
        border-radius: 50%;
        border: 4px solid #000;
        box-shadow: 0 0 0 2px #bd815f;
      }

      .timeline-content {
        text-align: left;
      }

      .timeline-content h3 {
        font-family: "Helvetica Neue", sans-serif;
        font-size: 28px;
        font-weight: 600;
        color: #bd815f;
        margin-bottom: 12px;
      }

      .timeline-content p {
        font-family: "Inter", sans-serif;
        font-size: 20px;
        line-height: 1.6;
        color: #cccccc;
      }

      /* Team Section */
      .team-section {
        padding: 80px 0;
        background: #000;
      }

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

      .team-title h2 {
        font-family: "Inter", sans-serif;
        font-size: 64px;
        font-weight: 500;
        line-height: 1.2;
        background: linear-gradient(90deg, #ffffff 0%, #bd815f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .team-members {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        max-width: 900px;
        margin: 0 auto;
      }

      .team-member {
        text-align: center;
        transition: transform 0.3s ease;
      }

      .team-member:hover {
        transform: translateY(-10px);
      }

      .member-image {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: linear-gradient(135deg, #bd815f, #c68642);
        margin: 0 auto 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 64px;
        color: #fff;
        position: relative;
        overflow: hidden;
      }

      .member-image::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
        transition: all 0.5s;
        opacity: 0;
      }

      .team-member:hover .member-image::before {
        animation: shine 0.5s ease-in-out;
      }

      @keyframes shine {
        0% {
          transform: rotate(45deg) translateX(-100%);
          opacity: 0;
        }
        50% {
          opacity: 1;
        }
        100% {
          transform: rotate(45deg) translateX(100%);
          opacity: 0;
        }
      }

      .team-member h3 {
        font-family: "Helvetica Neue", sans-serif;
        font-size: 28px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 8px;
      }

      .team-member p {
        font-family: "Inter", sans-serif;
        font-size: 18px;
        color: #bd815f;
      }

      /* CTA Section */
      .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, rgba(189, 129, 95, 0.1), rgba(0, 0, 0, 0.9));
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(189, 129, 95, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
      }

      @keyframes rotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      .cta-content {
        position: relative;
        z-index: 2;
      }

      .cta-content h2 {
        font-family: "Inter", sans-serif;
        font-size: 56px;
        font-weight: 500;
        line-height: 1.3;
        margin-bottom: 24px;
        background: linear-gradient(90deg, #ffffff 0%, #bd815f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .cta-content p {
        font-family: "Inter", sans-serif;
        font-size: 24px;
        color: #cccccc;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      /* Responsive */
      @media (max-width: 1024px) {
        .about-hero-title {
          font-size: 64px;
        }

        .about-hero-subtitle {
          font-size: 24px;
        }

        .mission-content {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .values-title h2,
        .team-title h2 {
          font-size: 48px;
        }

        .mission-text h2,
        .journey-content h2,
        .cta-content h2 {
          font-size: 40px;
        }
      }

      @media (max-width: 768px) {
        .about-hero {
          padding: 140px 0 60px;
        }

        .about-hero-title {
          font-size: 48px;
        }

        .about-hero-subtitle {
          font-size: 20px;
        }

        .mission-text h2,
        .journey-content h2,
        .cta-content h2 {
          font-size: 32px;
        }

        .mission-text p {
          font-size: 18px;
        }

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

        .value-card {
          padding: 32px 24px;
        }

        .timeline-item {
          padding-left: 40px;
        }

        .timeline-content h3 {
          font-size: 24px;
        }

        .timeline-content p {
          font-size: 18px;
        }

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