:root {
      --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --dark-bg: #0a0e27;
      --card-bg: rgba(255, 255, 255, 0.03);
      --text-primary: #ffffff;
      --text-secondary: #a0aec0;
      --glow-purple: 0 0 40px rgba(102, 126, 234, 0.3);
      --glow-pink: 0 0 40px rgba(245, 87, 108, 0.3);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark-bg);
      color: var(--text-primary);
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Animated background */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
      z-index: -1;
      animation: gradientShift 15s ease infinite;
    }

    @keyframes gradientShift {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    /* Navbar */
    .navbar {
      background: rgba(10, 14, 39, 0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled {
      padding: 1rem 0;
      background: rgba(10, 14, 39, 0.95);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .navbar-brand img {
      height: 50px;
      filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
      transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
      transform: scale(1.1) rotate(-5deg);
    }

    .nav-link {
      color: var(--text-primary);
      font-weight: 500;
      padding: 0.5rem 1.2rem;
      margin: 0 0.3rem;
      border-radius: 12px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--primary-gradient);
      transition: left 0.4s ease;
      z-index: -1;
      opacity: 0.2;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      left: 0;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--text-primary);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .hero {
      padding: 10rem 0 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(245, 87, 108, 0.2) 0%, transparent 60%);
      animation: heroGlow 8s ease-in-out infinite alternate;
    }

    @keyframes heroGlow {
      0% { opacity: 0.5; }
      100% { opacity: 1; }
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      font-weight: 900;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
    }

    .hero p {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: var(--text-secondary);
      position: relative;
      z-index: 2;
    }

    /* Main Content */
    main {
      flex: 1;
      padding: 3rem 0;
    }

    /* Content Card */
    .content-card {
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 30px;
      padding: 4rem 3rem;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      margin-bottom: 3rem;
    }

    .content-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-gradient);
    }

    .content-card::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .content-card p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 2;
    }

    .content-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-top: 2.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 2;
    }

    .content-card ul {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
      position: relative;
      z-index: 2;
    }

    .content-card ul li {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 1rem;
      padding-left: 2rem;
      position: relative;
    }

    .content-card ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #667eea;
      font-weight: bold;
      font-size: 1.3rem;
    }

    /* Image Wrapper */
    .image-wrapper {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
      margin-top: 3rem;
    }

    .image-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--primary-gradient);
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 1;
      mix-blend-mode: multiply;
    }

    .image-wrapper:hover::before {
      opacity: 0.3;
    }

    .image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.8s ease;
    }

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

    /* Section Divider */
    .section-divider {
      width: 100px;
      height: 4px;
      background: var(--accent-gradient);
      margin: 3rem auto;
      border-radius: 2px;
    }

    /* Quote Style */
    .quote-text {
      font-size: 1.3rem;
      font-style: italic;
      color: var(--text-primary);
      padding: 2rem;
      border-left: 4px solid;
      border-image: var(--accent-gradient) 1;
      background: rgba(102, 126, 234, 0.05);
      border-radius: 0 15px 15px 0;
      margin: 2rem 0;
      position: relative;
      z-index: 2;
    }

    /* Footer */
    .footer {
      background: rgba(10, 14, 39, 0.95);
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      margin-top: auto;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--primary-gradient);
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      margin: 0 0.5rem;
      border-radius: 50%;
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
    }

    .social-icons a:hover {
      background: var(--primary-gradient);
      transform: translateY(-5px) scale(1.1);
      box-shadow: var(--glow-purple);
    }

    .social-icons img {
      width: 24px;
      height: 24px;
      filter: brightness(0) invert(1);
    }

    /* Fade in animation */
    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease-out forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero {
        padding: 7rem 0 4rem;
      }

      .content-card {
        padding: 2.5rem 1.5rem;
      }

      .content-card h3 {
        font-size: 1.5rem;
      }

      .content-card p,
      .content-card ul li {
        font-size: 1rem;
      }

      .quote-text {
        font-size: 1.1rem;
        padding: 1.5rem;
      }
    }