* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --gold: #c9a961;
    --gold-dark: #a88a4d;
    --silver: #c0c0c0;
    --silver-dark: #9a9a9a;
    --white: #f5f5f5;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Navigation */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s ease;
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }

  .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 40px;
  }

  .nav-link {
    color: var(--silver);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    color: var(--gold);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--medium-gray) 100%);
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
  }

  .hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 24px;
    color: var(--silver);
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .hero-cta {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
  }

  .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 169, 97, 0.4);
  }

  a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--gold-dark);
  }

  /* Benefits Section */
  .benefits {
    padding: 120px 0;
    background-color: var(--dark-gray);
  }

  .section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--gold);
    line-height: 1.2;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }

  .benefit-card {
    background-color: var(--medium-gray);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
  }

  .benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.2);
  }

  .benefit-icon {
    color: var(--gold);
    margin-bottom: 24px;
  }

  .benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
  }

  .benefit-card p {
    color: var(--silver);
    line-height: 1.8;
    font-size: 16px;
  }

  /* Contact Section */
  .contact {
    padding: 120px 0;
    background-color: var(--black);
  }

  .contact-intro {
    text-align: center;
    font-size: 20px;
    color: var(--silver);
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-content {
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
  }

  .advisor-photo {
    flex: 0 0 400px;
  }

  .advisor-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.3);
  }

  .contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    border-color: var(--gold);
    transform: translateX(8px);
  }

  .contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
  }

  .contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .contact-item p {
    color: var(--silver);
    font-size: 16px;
    line-height: 1.6;
  }

  .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .social-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
  }

  .social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
    color: var(--black);
  }

  .social-button svg {
    width: 20px;
    height: 20px;
  }

  .calendly-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .calendly-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
    color: var(--black);
  }

  /* Footer */
  .footer {
    background-color: var(--dark-gray);
    border-top: 1px solid var(--gold);
    padding: 64px 0 24px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-section p {
    color: var(--silver);
    line-height: 1.8;
    font-size: 14px;
  }

  .footer-section ul {
    list-style: none;
  }

  .footer-section ul li {
    margin-bottom: 12px;
  }

  .footer-section ul li a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
  }

  .footer-section ul li a:hover {
    color: var(--gold);
  }

  .license-info {
    font-weight: 600;
    margin-bottom: 8px;
  }

  .disclaimer {
    font-size: 12px;
    color: var(--silver-dark);
    margin-top: 16px;
    line-height: 1.6;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
  }

  .footer-bottom p {
    color: var(--silver-dark);
    font-size: 14px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }

    .nav-links {
      position: fixed;
      top: 72px;
      right: -100%;
      width: 250px;
      height: calc(100vh - 72px);
      background-color: var(--dark-gray);
      flex-direction: column;
      gap: 0;
      padding: 32px 0;
      transition: right 0.3s ease;
      border-left: 1px solid var(--gold);
    }

    .nav-links.active {
      right: 0;
    }

    .nav-link {
      font-size: 18px;
      padding: 16px 32px;
      width: 100%;
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background-color: var(--medium-gray);
    }

    .hero-title {
      font-size: 40px;
    }

    .hero-subtitle {
      font-size: 18px;
    }

    .section-title {
      font-size: 36px;
    }

    .benefits-grid {
      grid-template-columns: 1fr;
    }

    .contact-layout {
      flex-direction: column;
      gap: 48px;
    }

    .advisor-photo {
      flex: none;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }

    .contact-item {
      flex-direction: column;
      align-items: flex-start;
    }

    .social-icons {
      width: 100%;
    }

    .social-button {
      flex: 1;
      min-width: 140px;
      justify-content: center;
    }

    .footer-content {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .nav-container {
      height: 64px;
    }

    .logo {
      font-size: 18px;
    }

    .nav-links {
      gap: 16px;
    }

    .hero-title {
      font-size: 32px;
    }

    .hero-subtitle {
      font-size: 16px;
    }

    .section-title {
      font-size: 28px;
    }

    .social-button span {
      font-size: 13px;
    }
  }
