body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      height: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: #0F172A;
      background: #FAFBFC;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
    }

    .site-wrapper {
      width: 100%;
      min-height: 100%;
    }

    /* Modern Navbar */
    .top-bar {
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #E2E8F0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.2rem 3%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #0F172A;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .brand-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-item {
      color: #475569;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .nav-item:hover {
      color: #3B82F6;
    }

    .cta-button {
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      color: white;
      padding: 0.7rem 1.8rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }

    .user-section {
      display: none;
      align-items: center;
      gap: 1rem;
    }

    .user-display {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      background: #F1F5F9;
      padding: 0.5rem 1.2rem;
      border-radius: 10px;
    }

    .user-avatar {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .user-text {
      color: #0F172A;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .logout-button {
      background: #EF4444;
      color: white;
      padding: 0.6rem 1.5rem;
      border-radius: 10px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .logout-button:hover {
      background: #DC2626;
      transform: translateY(-2px);
    }

    /* Hero Section - Split Design */
    .hero-section {
      width: 100%;
      min-height: 90%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .hero-left {
      background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
      padding: 8% 6%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hero-left::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      top: -100px;
      right: -100px;
      animation: pulse 8s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 0.8; }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
    }

    .hero-badge {
      display: inline-block;
      background: white;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #3B82F6;
      margin-bottom: 2rem;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      color: #0F172A;
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    .hero-description {
      font-size: 1.25rem;
      color: #475569;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
    }

    .btn-secondary {
      background: white;
      color: #0F172A;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      border: 2px solid #E2E8F0;
      font-weight: 600;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      border-color: #3B82F6;
      color: #3B82F6;
      transform: translateY(-3px);
    }

    .hero-right {
      background: #0F172A;
      padding: 8% 6%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .hero-right::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
      border-radius: 50%;
      bottom: -150px;
      left: -150px;
    }

    .hero-visual {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 500px;
    }

    .hero-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .floating-card {
      position: absolute;
      background: white;
      padding: 1.5rem;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      animation: floatCard 6s ease-in-out infinite;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .card-1 {
      top: 10%;
      left: -10%;
      animation-delay: 0s;
    }

    .card-2 {
      bottom: 15%;
      right: -10%;
      animation-delay: 2s;
    }

    .card-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
    }

    .card-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #0F172A;
      margin-bottom: 0.3rem;
    }

    .card-subtitle {
      font-size: 0.8rem;
      color: #64748B;
    }

    /* Services Grid */
    .services-section {
      width: 100%;
      padding: 6rem 3%;
      background: #FFFFFF;
    }

    .section-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-label {
      display: inline-block;
      background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
      color: #3B82F6;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .section-heading {
      font-size: 2.8rem;
      font-weight: 700;
      color: #0F172A;
      margin-bottom: 1rem;
    }

    .section-subheading {
      font-size: 1.2rem;
      color: #64748B;
      max-width: 700px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .service-box {
      background: #FAFBFC;
      padding: 2.5rem;
      border-radius: 20px;
      border: 2px solid #E2E8F0;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .service-box:hover {
      transform: translateY(-8px);
      border-color: #3B82F6;
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    }

    .service-emoji {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      display: block;
    }

    .service-title {
      font-size: 1.4rem;
      color: #0F172A;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .service-text {
      color: #64748B;
      line-height: 1.7;
      font-size: 1rem;
    }

    /* Stats Bar */
    .stats-bar {
      width: 100%;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      padding: 4rem 3%;
    }

    .stats-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: #94A3B8;
      font-size: 1rem;
      font-weight: 500;
    }

    /* Testimonials Slider */
    .testimonials-section {
      width: 100%;
      padding: 6rem 3%;
      background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    }

    .testimonials-slider {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
    }

    .testimonial-box {
      background: white;
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
      transition: all 0.3s ease;
    }

    .testimonial-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(59, 130, 246, 0.2);
    }

    .testimonial-top {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .testimonial-photo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #3B82F6;
    }

    .testimonial-author {
      flex: 1;
    }

    .author-name {
      font-weight: 700;
      color: #0F172A;
      font-size: 1.1rem;
      margin-bottom: 0.2rem;
    }

    .author-rating {
      color: #FBBF24;
      font-size: 1rem;
    }

    .testimonial-quote {
      color: #475569;
      line-height: 1.8;
      font-size: 1rem;
      font-style: italic;
    }

    /* Resources Cards */
    .resources-section {
      width: 100%;
      padding: 6rem 3%;
      background: #FFFFFF;
    }

    .resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .resource-box {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      border: 2px solid #E2E8F0;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .resource-box:hover {
      transform: scale(1.02);
      border-color: #3B82F6;
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    }

    .resource-img-wrapper {
      width: 100%;
      height: 240px;
      overflow: hidden;
    }

    .resource-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .resource-box:hover .resource-img {
      transform: scale(1.1);
    }

    .resource-body {
      padding: 2rem;
    }

    .resource-heading {
      font-size: 1.4rem;
      color: #0F172A;
      margin-bottom: 1rem;
      font-weight: 600;
      line-height: 1.3;
    }

    .resource-excerpt {
      color: #64748B;
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .resource-action {
      color: #3B82F6;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s ease;
    }

    .resource-action:hover {
      gap: 1rem;
    }

    /* CTA Banner */
    .cta-banner {
      width: 100%;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      padding: 6rem 3%;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      top: -200px;
      right: -200px;
    }

    .cta-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cta-title {
      font-size: 3rem;
      color: white;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .cta-subtitle {
      font-size: 1.3rem;
      color: #94A3B8;
      margin-bottom: 2.5rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta-white {
      background: white;
      color: #0F172A;
      padding: 1.1rem 2.8rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-cta-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    }

    .btn-cta-outline {
      background: transparent;
      color: white;
      padding: 1.1rem 2.8rem;
      border-radius: 12px;
      border: 2px solid #475569;
      font-weight: 600;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-cta-outline:hover {
      border-color: #3B82F6;
      background: rgba(59, 130, 246, 0.1);
      transform: translateY(-3px);
    }

    /* Newsletter */
    .newsletter-section {
      width: 100%;
      padding: 5rem 3%;
      background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    }

    .newsletter-box {
      max-width: 700px;
      margin: 0 auto;
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
      text-align: center;
    }

    .newsletter-title {
      font-size: 2rem;
      color: #0F172A;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .newsletter-desc {
      color: #64748B;
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .newsletter-form-wrapper {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .newsletter-input-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .newsletter-field {
      flex: 1;
      min-width: 250px;
      padding: 1rem 1.5rem;
      border: 2px solid #E2E8F0;
      border-radius: 12px;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .newsletter-field:focus {
      border-color: #3B82F6;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }

    .newsletter-btn-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-subscribe {
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-subscribe:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }

    .btn-unsubscribe {
      background: #F1F5F9;
      color: #475569;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      border: 2px solid #E2E8F0;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-unsubscribe:hover {
      border-color: #94A3B8;
      background: #E2E8F0;
    }

    .newsletter-feedback {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 12px;
      font-weight: 600;
      display: none;
    }

    .newsletter-feedback.show {
      display: block;
    }

    .newsletter-feedback.success-msg {
      background: #DCFCE7;
      color: #166534;
    }

    .newsletter-feedback.error-msg {
      background: #FEE2E2;
      color: #991B1B;
    }

    /* Footer */
    .site-footer {
      width: 100%;
      background: #0F172A;
      padding: 4rem 3% 2rem;
      color: white;
    }

    .footer-main {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-column h4 {
      color: white;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .footer-list {
      list-style: none;
    }

    .footer-list li {
      margin-bottom: 0.8rem;
    }

    .footer-list a {
      color: #94A3B8;
      text-decoration: none;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .footer-list a:hover {
      color: #3B82F6;
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid #1E293B;
      text-align: center;
    }

    .footer-policies {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }

    .footer-policies a {
      color: #94A3B8;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .footer-policies a:hover {
      color: #3B82F6;
    }

    .footer-copyright {
      color: #64748B;
      font-size: 0.95rem;
    }

    /* Modal Overlay */
    .modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(8px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      padding: 1rem;
    }

    .modal-backdrop.show {
      display: flex;
    }

    .modal-dialog {
      background: white;
      padding: 3rem;
      border-radius: 24px;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
      animation: modalSlide 0.4s ease;
    }

    @keyframes modalSlide {
      from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-title {
      font-size: 2rem;
      color: #0F172A;
      margin-bottom: 0.8rem;
      text-align: center;
      font-weight: 700;
    }

    .modal-subtitle {
      color: #64748B;
      text-align: center;
      margin-bottom: 2rem;
    }

    .auth-form-group {
      margin-bottom: 1.5rem;
    }

    .auth-form-group label {
      display: block;
      color: #0F172A;
      font-weight: 600;
      margin-bottom: 0.6rem;
      font-size: 0.95rem;
    }

    .auth-form-group input {
      width: 100%;
      padding: 1rem;
      border: 2px solid #E2E8F0;
      border-radius: 12px;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .auth-form-group input:focus {
      border-color: #3B82F6;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }

    .auth-error-msg {
      background: #FEE2E2;
      color: #991B1B;
      padding: 1rem;
      border-radius: 12px;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
      text-align: center;
      display: none;
    }

    .auth-error-msg.show {
      display: block;
    }

    .auth-actions {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }

    .btn-auth-submit {
      width: 100%;
      padding: 1.1rem;
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      color: white;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-auth-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }

    .btn-auth-cancel {
      width: 100%;
      padding: 1.1rem;
      background: #F1F5F9;
      color: #475569;
      border: 2px solid #E2E8F0;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-auth-cancel:hover {
      background: #E2E8F0;
    }

    .modal-switch-text {
      text-align: center;
      margin-top: 1.5rem;
      color: #64748B;
    }

    .modal-switch-text a {
      color: #3B82F6;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
    }

    .modal-switch-text a:hover {
      text-decoration: underline;
    }

    /* Policy Modal */
    .policy-modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(8px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      padding: 2rem;
    }

    .policy-modal-backdrop.show {
      display: flex;
    }

    .policy-modal-dialog {
      background: white;
      padding: 3rem;
      border-radius: 24px;
      max-width: 900px;
      width: 100%;
      max-height: 85%;
      overflow-y: auto;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
      animation: modalSlide 0.4s ease;
    }

    .policy-modal-dialog h2 {
      font-size: 2.2rem;
      color: #0F172A;
      margin-bottom: 2rem;
    }

    .policy-modal-dialog h3 {
      font-size: 1.5rem;
      color: #0F172A;
      margin: 2rem 0 1rem;
    }

    .policy-modal-dialog h4 {
      font-size: 1.2rem;
      color: #0F172A;
      margin: 1.5rem 0 0.8rem;
    }

    .policy-modal-dialog p {
      color: #475569;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .policy-modal-dialog ul {
      color: #475569;
      line-height: 1.8;
      margin-left: 2rem;
      margin-bottom: 1rem;
    }

    .btn-close-policy {
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      margin-top: 2rem;
      transition: all 0.3s ease;
    }

    .btn-close-policy:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }

    /* Resource Detail Modal */
    .resource-modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(8px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      padding: 2rem;
    }

    .resource-modal-backdrop.show {
      display: flex;
    }

    .resource-modal-dialog {
      background: white;
      padding: 3rem;
      border-radius: 24px;
      max-width: 800px;
      width: 100%;
      max-height: 85%;
      overflow-y: auto;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
      animation: modalSlide 0.4s ease;
    }

    .resource-modal-dialog h2 {
      font-size: 2rem;
      color: #0F172A;
      margin-bottom: 1.5rem;
    }

    .resource-modal-dialog p {
      color: #475569;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .btn-close-resource {
      background: linear-gradient(135deg, #3B82F6, #8B5CF6);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-close-resource:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }

    /* Loading */
    .loading-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.95);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 3000;
    }

    .loading-backdrop.show {
      display: flex;
    }

    .loading-spinner {
      width: 60px;
      height: 60px;
      border: 4px solid #E2E8F0;
      border-top: 4px solid #3B82F6;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Mobile Menu Toggle */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .mobile-menu-btn span {
      width: 28px;
      height: 3px;
      background: #0F172A;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-right {
        display: none;
      }

      .hero-left {
        padding: 6rem 5%;
      }

      .hero-title {
        font-size: 2.8rem;
      }

      .section-heading {
        font-size: 2.3rem;
      }

      .cta-title {
        font-size: 2.3rem;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100% - 65px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid #E2E8F0;
        align-items: flex-start;
        gap: 1.5rem;
      }

      .nav-links.active {
        left: 0;
      }

      .mobile-menu-btn {
        display: flex;
      }

      .hero-title {
        font-size: 2.2rem;
      }

      .hero-description {
        font-size: 1.1rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn-primary, .btn-secondary {
        width: 100%;
      }

      .section-heading {
        font-size: 2rem;
      }

      .modal-dialog {
        padding: 2rem;
      }

      .policy-modal-dialog {
        padding: 2rem;
      }

      .resource-modal-dialog {
        padding: 2rem;
      }

      .newsletter-box {
        padding: 2rem;
      }

      .newsletter-input-group {
        flex-direction: column;
      }

      .newsletter-btn-group {
        flex-direction: column;
      }

      .floating-card {
        display: none;
      }
    }
  