    :root {
      --primary-color: #1a9b8e;
      --secondary-color: #148c7f;
      --text-dark: #2c3e50;
      --accent-yellow: #fcd34d;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Almarai", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans Arabic", "Droid Arabic Naskh", sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
      padding-top: 100px;
      padding-bottom: 4rem;
      overflow-x: hidden;
      color: white;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: url("/images/kuwait.png") center/cover no-repeat;
      opacity: 0.30;
      z-index: -1;
      pointer-events: none;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
      z-index: -2;
      pointer-events: none;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      background: rgba(26, 155, 142, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 1rem 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header a.btn {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 700;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }

    header a.btn:hover {
      background: white;
      color: var(--primary-color);
      transform: translateY(-2px);
    }

    /* Card Container */
    .card-container {
      max-width: 1000px;
      width: 90vw;
      position: relative;
      z-index: 1;
    }

    .about-content {
      text-align: right;
      direction: rtl;
      padding: 2rem 0;
      margin-bottom: 4rem;
      position: relative;
    }

    .about-content h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      color: white;
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .about-content h1::after {
      content: "";
      position: absolute;
      bottom: -10px;
      right: 0;
      width: 100px;
      height: 6px;
      background: var(--accent-yellow);
      border-radius: 3px;
    }

    .about-content p {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 1.5rem;
      text-align: justify;
      text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }

    .about-content .slogan {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--accent-yellow);
      text-align: center;
      margin-top: 3rem;
      padding: 2rem;
      border-right: 5px solid var(--accent-yellow);
      background: transparent;
      border-radius: 0;
    }

    /* CEO Section */
    .ceo-section {
      display: flex;
      margin-top: 6rem;
      padding: 0;
      position: relative;
      perspective: 2000px;
      justify-content: flex-end;
      width: 100%;
    }

    .ceo-content-flex {
      display: flex;
      justify-content: flex-start;
      width: 100%;
    }

    .ceo-image-wrapper {
      flex: 0 1 780px;
      width: 100%;
      position: relative;
      z-index: 2;
      border-radius: clamp(20px, 5vw, 80px);
      overflow: hidden;
      background: linear-gradient(135deg,
          rgba(255, 255, 255, 0.02) 0%,
          rgba(13, 109, 100, 0.1) 40%,
          rgba(13, 109, 100, 0.2) 100%);
      backdrop-filter: blur(15px);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-top: 3px solid rgba(255, 255, 255, 0.3);
      border-left: 3px solid rgba(255, 255, 255, 0.3);
      box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.02);
      min-height: 400px;
      transition: all 0.5s ease;
      display: flex;
      align-items: center;
      padding: 3rem 4rem 3rem 320px;
    }

    /* Specular Highlight (Glare) */
    .ceo-image-wrapper::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg,
          transparent 45%,
          rgba(255, 255, 255, 0.1) 48%,
          rgba(255, 255, 255, 0.2) 50%,
          rgba(255, 255, 255, 0.1) 52%,
          transparent 55%);
      transform: rotate(-25deg);
      pointer-events: none;
      z-index: 3;
    }

    .ceo-image-wrapper::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
      z-index: 4;
      pointer-events: none;
    }

    .ceo-quote-card {
      position: relative;
      width: 100%;
      z-index: 5;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border: none;
      border-radius: 0;
      box-shadow: none;
    }

    .ceo-quote-card h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      color: var(--accent-yellow);
      margin-bottom: 0.8rem;
      font-weight: 800;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      border-right: 6px solid var(--accent-yellow);
      padding-right: 20px;
    }

    .ceo-quote-card .ceo-name {
      display: block;
      font-size: 1.4rem;
      color: white;
      margin-bottom: 2.5rem;
      font-weight: 700;
      opacity: 0.9;
    }

    .ceo-quote-card p {
      font-size: 1.5rem;
      line-height: 2;
      font-style: italic;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.95);
      position: relative;
      text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }

    .quote-mark {
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--accent-yellow);
      font-family: serif;
      line-height: 0;
      vertical-align: middle;
      display: inline-block;
      margin: 0 2px;
      font-weight: 800;
    }

    .ceo-quote-card::before {
      content: '”';
      position: absolute;
      top: -20px;
      left: 20px;
      font-size: 12rem;
      color: rgba(255, 255, 255, 0.05);
      font-family: serif;
      line-height: 1;
      pointer-events: none;
    }

    /* Founder Circle Badge */
    .ceo-circle-badge {
      width: 380px;
      height: 380px;
      flex-shrink: 0;
      border-radius: 50%;
      background: url('/images/ceo1.png') center 40%/110% no-repeat, transparent;
      border: none;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      /* Neumorphic Recessed Effect */
      box-shadow:
        inset 15px 15px 30px rgba(0, 0, 0, 0.4),
        inset -15px -15px 30px rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.6s ease;
      z-index: 10;
    }

    .ceo-circle-badge::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
      pointer-events: none;
    }

    /* Responsive Design */
    @media (max-width: 1100px) {
      .card-container {
        margin-top: 1rem;
      }

      .about-content h1 {
        font-size: 2.8rem;
        text-align: center;
        display: block;
      }

      .about-content h1::after {
        right: 50%;
        transform: translateX(50%);
      }

      .about-content p {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 1024px) {
      .ceo-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 4rem;
      }

      .ceo-circle-badge {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 280px;
        height: 280px;
        margin: 0 auto -1rem;
        box-shadow: 
          0 15px 30px rgba(0, 0, 0, 0.3),
          inset 10px 10px 20px rgba(0, 0, 0, 0.2);
      }

      .ceo-image-wrapper {
        flex: 0 0 100%;
        width: 100%;
        max-width: 650px;
        min-height: auto;
        padding: 3rem 2rem;
        border-radius: 40px;
      }

      .ceo-quote-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        text-align: center;
      }

      .ceo-quote-card h2 {
        font-size: 2.2rem;
        text-align: center;
        padding-right: 0;
        border-right: none;
        border-bottom: 3px solid var(--accent-yellow);
        display: inline-block;
        margin: 0 auto 1.5rem;
      }

      .ceo-name {
        text-align: center;
        margin-bottom: 1.5rem;
      }

      .ceo-quote-card p {
        font-size: 1.3rem;
        text-align: center;
        line-height: 1.8;
      }
    }

    @media (max-width: 480px) {
      .about-content h1 {
        font-size: 2.2rem;
      }

      .ceo-quote-card h2 {
        font-size: 1.8rem;
      }

      body {
        padding-top: 80px;
      }

      header {
        padding: 0.8rem 1rem;
      }
    }

    /* Utilities */
    a,
    button {
      cursor: pointer;
    }