/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Buttons */
.btn-primary {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive Images */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section Spacing */
section {
    margin-bottom: 3rem;
}

/* Custom Shadow */
.custom-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* FAQ Transition */
.faq-answer {
    transition: all 0.3s ease;
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}
        
        .cta-banner {
          background-color: #f8fafc;
          border: 1px solid #e2e8f0;
          border-radius: 0.75rem;
          padding: 1.5rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          position: relative;
          overflow: hidden;
        }
        
        .cta-banner::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
        }
        
        .cta-title {
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 0.5rem;
          color: #1e293b;
        }
        
        .cta-description {
          color: #64748b;
          margin-bottom: 1.5rem;
          max-width: 600px;
        }
        
        .cta-button {
          background: linear-gradient(90deg, #3b82f6, #8b5cf6);
          color: white;
          font-weight: 600;
          padding: 0.75rem 2rem;
          border-radius: 9999px;
          text-decoration: none;
          transition: transform 0.2s, box-shadow 0.2s;
          display: inline-flex;
          align-items: center;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .cta-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .cta-button i {
          margin-right: 0.5rem;
        }
        
        .cta-badge {
          position: absolute;
          top: 1rem;
          right: 1rem;
          background-color: #f59e0b;
          color: white;
          font-size: 0.75rem;
          font-weight: 600;
          padding: 0.25rem 0.75rem;
          border-radius: 9999px;
        }
        :host {
          display: block;
          background-color: #1e293b;
          color: white;
          padding: 3rem 1rem;
        }
        
        .footer-container {
            
          background-color: #1e293b;
          width: 100%;
          color: white;
          margin: 0 auto;
          padding: 3rem 1rem;
        }
        .footer-width {
          max-width: 1200px;
          width: 100%;
          margin: 0 auto;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 2rem;
        }
        
        .footer-logo {
          font-size: 1.5rem;
          font-weight: 700;
          color: white;
          margin-bottom: 1rem;
          display: flex;
          align-items: center;
        }
        
        .footer-logo i {
          margin-right: 0.5rem;
        }
        
        .footer-description {
          margin-bottom: 1.5rem;
          opacity: 0.8;
        }
        
        .social-links {
          display: flex;
          gap: 1rem;
        }
        
        .social-links a {
          color: white;
          opacity: 0.7;
          transition: opacity 0.2s;
        }
        
        .social-links a:hover {
          opacity: 1;
        }
        
        .footer-heading {
          font-weight: 600;
          margin-bottom: 1rem;
          font-size: 1.1rem;
        }
        
        .footer-links {
          display: flex;
          flex-direction: column;
          gap: 0.75rem;
        }
        
        .footer-links a {
          color: #e2e8f0;
          text-decoration: none;
          opacity: 0.8;
          transition: opacity 0.2s;
        }
        
        .footer-links a:hover {
          opacity: 1;
        }
        
        .copyright {
          margin-top: 3rem;
          text-align: center;
          opacity: 0.7;
          font-size: 0.9rem;
          grid-column: 1 / -1;
        }
        
        @media (max-width: 768px) {
          .footer-container {
            grid-template-columns: 1fr;
          }
        }
        nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 1rem 2rem;
          margin: 0 auto;
          background-color: white;
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          position: sticky;
          width: 100% !important;
          top: 0;
          z-index: 50;
        }
        .nav-container{
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
          font-size: 1.5rem;
          font-weight: 700;
          color: #2563eb;
          display: flex;
          align-items: center;
        }
        
        .logo i {
          margin-right: 0.5rem;
        }
        
        .nav-links {
          display: flex;
          gap: 1.5rem;
        }
        
        .nav-links a {
          color: #4b5563;
          font-weight: 500;
          text-decoration: none;
          transition: color 0.2s;
          display: flex;
          align-items: center;
        }
        
        .nav-links a:hover {
          color: #2563eb;
        }
        
        .nav-links i {
          margin-right: 0.25rem;
          width: 1rem;
          height: 1rem;
        }
        
        .mobile-menu-button {
          display: none;
          background: none;
          border: none;
          cursor: pointer;
        }
        
        @media (max-width: 768px) {
          .nav-links {
            display: none;
          }
          
          .mobile-menu-button {
            display: block;
          }
        }