    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

    :root {
      --primary-gradient: linear-gradient(135deg, #c19b5a 0%, #8b6914 100%);
      --secondary-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
      --dark-gradient: linear-gradient(135deg, #0f0e0d 0%, #1a1716 100%);
      --card-bg: rgba(193, 155, 90, 0.08);
      --card-border: rgba(193, 155, 90, 0.15);
      --text-primary: #f5f1eb;
      --text-secondary: #b8a082;
      --accent-color: #c19b5a;
      --deep-brown: #2c1810;
      --warm-beige: #f5f1eb;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: var(--dark-gradient);
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Animated background particles */
    .bg-animation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }

    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: var(--accent-color);
      border-radius: 50%;
      animation: float 20s infinite linear;
      opacity: 0.7;
      box-shadow: 0 0 4px rgba(193, 155, 90, 0.5);
    }

    @keyframes float {
      0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10% { opacity: 0.7; }
      90% { opacity: 0.7; }
      100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
    }

    /* Navigation - Professional Style */
/* Navbar container */
.navbar {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.75rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Navbar brand (logo) */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: relative;
  z-index: 1001;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.navbar-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* Nav list */
.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  list-style: none;
}

/* Nav links */
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-left: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover color change */
.nav-link:hover {
  color: var(--accent-color);
}

/* Underline (inactive by default) */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

/* Disable underline on hover unless active */
.nav-link:not(.active):hover::after {
  width: 0;
}

/* Active link gets the underline */
.nav-link.active::after {
  width: 100%;
}

/* Navbar toggler (mobile) */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: transparent;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.navbar-toggler:hover {
  background: var(--card-bg);
  border-radius: 8px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(193, 155, 90, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 241, 235, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile nav */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    margin: 0.5rem 0;
    margin-left: 0;
    display: block;
  }
}


    /* Content Styling */
    .content-section {
      padding: 6rem 0 4rem;
      min-height: 80vh;
      padding-top: 120px; /* Account for fixed navbar */
    }

    .page-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--warm-beige) 0%, var(--text-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .page-subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: 1.1rem;
      margin-bottom: 4rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .contact-card {
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 3rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary-gradient);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(193, 155, 90, 0.2);
    }

    .contact-card:hover::before {
      opacity: 0.05;
    }

    .contact-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: var(--primary-gradient);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .contact-icon i {
      font-size: 2rem;
      color: var(--warm-beige);
    }

    .contact-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text-primary);
      position: relative;
      z-index: 1;
    }

    .contact-description {
      color: var(--text-secondary);
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--accent-color);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .contact-link:hover {
      color: var(--warm-beige);
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .faq-section {
      margin-top: 4rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2rem;
      color: var(--text-primary);
    }

    .faq-item {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .faq-question {
      padding: 1.5rem;
      background: transparent;
      border: none;
      color: var(--text-primary);
      font-weight: 500;
      font-size: 1.1rem;
      width: 100%;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      color: var(--accent-color);
    }

    .faq-question i {
      transition: transform 0.3s ease;
    }

    .faq-question.active i {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-answer.active {
      padding: 0 1.5rem 1.5rem;
      max-height: 200px;
    }

    .faq-answer p {
      color: var(--text-secondary);
      margin: 0;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-title {
        font-size: 2rem;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        flex-direction: column;
        text-align: center;
      }
    }