/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 42px; /* Adjusted for the reduced header height */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.main-header {
    background: #fff;
    padding: 5px 0; /* Further reduced to 5px */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #4169e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-icon i {
    color: #fff;
    font-size: 20px;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    transition: color 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: scale(1.05);
}

.logo a:hover .logo-text {
    color: #4169e1;
}

/* Main Navigation - always visible */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4169e1;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: #4169e1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 30px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 18px;
    }
    
    .logo-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: center;
        padding: 0; /* Remove extra padding */
    }
    
    .logo {
        margin-bottom: 10px; /* Reduced from 15px to 10px */
    }
    
    .main-nav {
        width: 100%;
    }
    
    .main-nav ul {
        justify-content: center;
        gap: 20px;
    }
    
    .main-nav a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        gap: 12px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-icon i {
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

/* Ensure proper spacing below header */
body {
    padding-top: 60px; /* Adjusted for the reduced header height */
}

@media (max-width: 768px) {
    body {
        padding-top: 90px; /* Adjusted for the stacked header elements */
    }
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Hero section styles */
.hero {
    background: #111827;
    color: #fff;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h2.highlight {
    color: #4169e1;
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4169e1;
    color: #fff;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-button:hover {
    background: #3154b4;
    transform: translateY(-2px);
}

/* Stats cards styles */
.stats-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
    width: 220px;
}

.stat-card i {
    font-size: 42px;
    color: #4169e1;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.stat-card h3 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.stat-card p {
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 500;
}

/* Services section styles */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, #fff);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(65, 105, 225, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #4169e1, #3154b4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    background: #4169e1;
}

.service-card .icon i {
    font-size: 28px;
    color: #4169e1;
    transition: all 0.3s ease;
}

.service-card:hover .icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #6B7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4B5563;
    font-size: 14px;
    margin-bottom: 12px;
}

.service-features li i {
    color: #4169e1;
    font-size: 14px;
}

.service-price-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(65, 105, 225, 0.1);
    color: #4169e1;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-price-btn:hover {
    background: #4169e1;
    color: #fff;
}

.service-price-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-price-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }
}

/* Testimonials section styles */
.testimonials {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(65, 105, 225, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #4169e1, #3154b4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.featured {
    background: linear-gradient(to bottom right, #4169e1, #3154b4);
    color: #fff;
}

.testimonial-card.featured .client-details h3,
.testimonial-card.featured .client-details p,
.testimonial-card.featured .review {
    color: #fff;
}

.testimonial-card.featured .client-info .icon {
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-card.featured .client-info .icon i {
    color: #fff;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-info .icon {
    width: 50px;
    height: 50px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.client-info .icon i {
    font-size: 24px;
    color: #4169e1;
}

.client-details h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 5px;
    font-weight: 600;
}

.client-details p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 5px;
}

.verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #4169e1;
}

.testimonial-card.featured .verified {
    color: rgba(255, 255, 255, 0.9);
}

.verified i {
    font-size: 14px;
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #FFB800;
    font-size: 18px;
    margin-right: 2px;
}

.review {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.metrics {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: #4169e1;
}

.testimonial-card.featured .metric {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4169e1;
    color: #fff;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.view-more-btn:hover {
    background: #3154b4;
    transform: translateY(-2px);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #6B7280;
    font-size: 15px;
}

.testimonials-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-stats i {
    color: #4169e1;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        margin: 30px 0;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero h2.highlight {
        font-size: 36px;
    }
    
    .stats-cards {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 220px;
    }
    
    .main-nav {
        display: none;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: 32px;
    }

    .testimonials .section-subtitle {
        font-size: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* Contact section styles */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 40px;
    color: #111827;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info .section-subtitle {
    color: #6B7280;
    font-size: 18px;
    margin-bottom: 50px;
}

.info-items {
    display: grid;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .icon i {
    font-size: 20px;
    color: #4169e1;
}

.info-item .details h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item .details p {
    color: #6B7280;
    font-size: 15px;
    line-height: 1.6;
}

.contact-form {
    position: relative;
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4169e1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.submit-btn {
    background: #4169e1;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.submit-btn:hover {
    background: #3154b4;
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 16px;
}

/* Update responsive styles */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .info-items {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-info .section-subtitle {
        font-size: 16px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .form-card {
        padding: 30px 20px;
    }
}

/* Footer styles */
.footer {
    background: #111827;
    padding: 40px 0;
    color: #fff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #4169e1;
    transform: translateY(-2px);
}

.copyright {
    color: #9CA3AF;
    font-size: 14px;
}

/* Responsive footer styles */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-links {
        gap: 15px;
    }

    .footer-logo a {
        font-size: 20px;
    }
}

/* Service Page Styles */
.service-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-detailed {
    padding: 100px 0;
    background: #f8fafc;
}

.services-detailed .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-detailed-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #111827;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-detailed-card h2 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-detailed-card p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 15px;
    margin-bottom: 12px;
}

.service-features li i {
    color: #4169e1;
    font-size: 14px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #4169e1;
    border: 2px solid #4169e1;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform: translateZ(0); /* Hardware acceleration */
    will-change: color; /* Optimize for animation */
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4169e1;
    transition: width 0.2s ease-out;
    z-index: 1;
    will-change: width; /* Optimize for animation */
}

.learn-more-btn:hover {
    color: #fff;
}

.learn-more-btn:hover::before {
    width: 100%;
}

.learn-more-btn span {
    position: relative;
    z-index: 2;
}

.learn-more-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease-out;
    will-change: transform; /* Optimize for animation */
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

.service-cta {
    background: #111827;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.service-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-cta p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles for service page */
@media (max-width: 1200px) {
    .services-detailed .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .service-hero p {
        font-size: 16px;
    }

    .services-detailed {
        padding: 60px 0;
    }

    .services-detailed .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detailed-card {
        padding: 30px;
    }

    .service-cta h2 {
        font-size: 28px;
    }

    .service-cta p {
        font-size: 16px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.service-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    z-index: 1001;
    overflow-y: auto;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    position: relative;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.modal-close i {
    font-size: 20px;
    color: #111827;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: #111827;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon i {
    font-size: 28px;
    color: #fff;
}

.modal-header h2 {
    font-size: 32px;
    color: #111827;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.modal-body {
    color: #4B5563;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-body h3 {
    font-size: 24px;
    color: #111827;
    margin: 30px 0 20px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.modal-features,
.modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.modal-features li,
.modal-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #4B5563;
}

.modal-features i {
    color: #4169e1;
    font-size: 16px;
}

.modal-benefits i {
    color: #FFB800;
    font-size: 16px;
}

.modal-cta {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.modal-cta .primary-btn,
.modal-cta .secondary-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.modal-cta .primary-btn {
    background: #4169e1;
    color: #fff;
    border: none;
}

.modal-cta .primary-btn:hover {
    background: #3154b4;
    transform: translateY(-2px);
}

.modal-cta .secondary-btn {
    background: #f3f4f6;
    color: #111827;
    border: none;
}

.modal-cta .secondary-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Responsive modal styles */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .modal-icon {
        margin: 0 auto;
    }

    .modal-header h2 {
        font-size: 28px;
    }

    .modal-features,
    .modal-benefits {
        grid-template-columns: 1fr;
    }

    .modal-cta {
        flex-direction: column;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

/* About Page Styles */
.about-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.our-story {
    padding: 100px 0;
    background: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text p {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-vision {
    padding: 100px 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #111827;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon i {
    font-size: 28px;
    color: #fff;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 600;
}

.mission-card p,
.vision-card p {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
}

.core-values {
    padding: 100px 0;
    background: #fff;
}

.core-values h2 {
    text-align: center;
    font-size: 36px;
    color: #111827;
    margin-bottom: 50px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #111827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 24px;
    color: #fff;
}

.value-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.6;
}

.our-difference {
    padding: 100px 0;
    background: #f8fafc;
}

.our-difference h2 {
    text-align: center;
    font-size: 36px;
    color: #111827;
    margin-bottom: 50px;
    font-weight: 700;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.difference-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
}

.difference-icon {
    width: 60px;
    height: 60px;
    background: #111827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.difference-icon i {
    font-size: 24px;
    color: #fff;
}

.difference-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 600;
}

.difference-card p {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.6;
}

.meet-founder {
    padding: 100px 0;
    background: #fff;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.founder-info h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 700;
}

.founder-info h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 600;
}

.founder-role {
    color: #4169e1;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.founder-bio {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.7;
}

.about-cta {
    background: #111827;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Meet the Team Section */
.meet-team {
    padding: 100px 0;
    background: #f8fafc;
}

.meet-team h2 {
    text-align: center;
    font-size: 36px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 18px;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-card h3 {
    font-size: 24px;
    color: #111827;
    margin: 20px 0 8px;
    font-weight: 600;
}

.team-role {
    color: #4169e1;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 25px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(65, 105, 225, 0.1);
    color: #4169e1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #4169e1;
    color: #fff;
    transform: translateY(-2px);
}

/* Let's Grow Together Section */
.grow-together {
    padding: 80px 0;
    background: #111827;
    text-align: center;
    color: #fff;
}

.grow-together h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Responsive styles for Team section */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .meet-team {
        padding: 60px 0;
    }

    .meet-team h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .grow-together h2 {
        font-size: 28px;
    }
}

/* About CTA styles */
.about-cta {
    background: #111827;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles for About page */
@media (max-width: 1200px) {
    .values-grid,
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .story-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 16px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-card h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-card > p {
    color: #6B7280;
    margin-bottom: 30px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
}

.form-group label span {
    color: #6B7280;
    font-weight: 400;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4169e1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.info-card h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 700;
}

.info-card > p {
    color: #6B7280;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.contact-method i {
    font-size: 24px;
    color: #4169e1;
    width: 48px;
    height: 48px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h3 {
    font-size: 18px;
    color: #111827;
    font-weight: 600;
    margin: 0;
}

.contact-method p {
    color: #4B5563;
    margin: 0;
}

.contact-method a {
    color: #4169e1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: #3154b4;
}

.social-connect {
    border-top: 1px solid #E5E7EB;
    padding-top: 30px;
}

.social-connect h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(65, 105, 225, 0.1);
    color: #4169e1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #4169e1;
    color: #fff;
    transform: translateY(-2px);
}

.contact-faq {
    padding: 100px 0;
    background: #fff;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    color: #111827;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3 i {
    color: #4169e1;
    font-size: 20px;
}

.faq-item p {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.6;
}

.contact-cta {
    background: #111827;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .primary-btn,
.cta-buttons .secondary-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-buttons .primary-btn {
    background: #4169e1;
    color: #fff;
}

.cta-buttons .primary-btn:hover {
    background: #3154b4;
    transform: translateY(-2px);
}

.cta-buttons .secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive styles for Contact page */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-grid {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-main {
        padding: 60px 0;
    }

    .form-card,
    .info-card {
        padding: 30px 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta h2 {
        font-size: 28px;
    }

    .contact-cta p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .cta-buttons .primary-btn,
    .cta-buttons .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Glass Toggle Menu - Only visible in responsive view */
.toggle-container {
    display: none; /* Hidden by default */
    position: fixed;
    top: 10px; /* Reduced from 15px to 10px */
    right: 10px; /* Reduced from 15px to 10px */
    z-index: 1100;
}

/* Toggle Button Animation */
.toggle-btn {
    width: 35px;
    height: 35px; 
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1110;
    position: relative;
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.toggle-btn:active {
    transform: scale(0.95);
}

.toggle-btn.active {
    background: rgba(65, 105, 225, 0.2);
}

/* Toggle Icon Animation */
.toggle-icon {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #111827;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease; /* Smoother transitions */
    will-change: transform, opacity; /* Performance optimization */
}

.toggle-btn .toggle-icon:nth-child(1) {
    transform-origin: center;
}
.toggle-btn .toggle-icon:nth-child(2) {
    transform-origin: center;
}
.toggle-btn .toggle-icon:nth-child(3) {
    transform-origin: center;
}

/* Active Toggle Button */
.toggle-btn.active .toggle-icon:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.toggle-btn.active .toggle-icon:nth-child(2) {
    opacity: 0;
}
.toggle-btn.active .toggle-icon:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Toggle Overlay */
.toggle-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Include visibility in transition */
    will-change: opacity; /* Performance optimization */
}

.toggle-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Glass Effect Menu Panel */
.toggle-menu {
    position: fixed;
    top: 0;
    right: -260px; /* Match exactly with width */
    width: 260px;
    height: 100vh;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother easing */
    overflow-y: auto;
    will-change: transform, opacity; /* Performance optimization */
    transform: translateZ(0); /* Hardware acceleration */
}

.toggle-menu.active {
    right: 0;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Toggle Header */
.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px; /* Reduced from 20px to 10px */
    margin-bottom: 10px; /* Reduced from 20px to 10px */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.toggle-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.toggle-logo .logo-text {
    font-size: 18px;
}

.close-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.close-toggle i {
    font-size: 16px;
    color: #111827;
}

/* Toggle Navigation */
.toggle-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toggle-nav li {
    margin-bottom: 5px; /* Reduced from 10px to 5px */
}

.toggle-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.toggle-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(65, 105, 225, 0.1);
    transition: width 0.2s ease-in-out;
    z-index: -1;
    border-radius: 6px;
}

.toggle-nav a:hover::before,
.toggle-nav a.active::before {
    width: 100%;
}

/* Navigation Link Styles */
.toggle-nav a:hover,
.toggle-nav a.active {
    color: #4169e1;
}

.toggle-nav a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Only show toggle in responsive view */
@media (max-width: 768px) {
    .toggle-container {
        display: block;
    }
    
    /* Hide the regular nav on mobile when toggle is active */
    .main-nav {
        display: none;
    }
    
    /* Adjust logo position to be centered */
    .header-flex {
        justify-content: center;
    }
}

/* Prevent scroll when menu is open */
body.toggle-open {
    overflow: hidden;
}

/* Responsive styles */

/* Compact Navigation */
.compact-nav {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Very small gap between items */
    margin: 0;
    padding: 0;
}

/* Pricing Page Styles */
.pricing-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pricing-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    transform: scale(1.02);
    border: 2px solid #4169e1;
    box-shadow: 0 8px 30px rgba(65, 105, 225, 0.15);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4169e1;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-features h4 {
    font-size: 16px;
    color: #4169e1;
    margin: 25px 0 15px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.1);
}

.pricing-features h4:first-child {
    margin-top: 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 5px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #374151;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.pricing-features i {
    color: #4169e1;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-cta .cta-button:not(.primary) {
    background: transparent;
    color: #4169e1;
    border: 2px solid #4169e1;
}

.pricing-cta .cta-button.primary {
    background: #4169e1;
    color: #fff;
    border: none;
}

.pricing-cta .cta-button:hover {
    transform: translateY(-2px);
}

.pricing-cta .cta-button:not(.primary):hover {
    background: rgba(65, 105, 225, 0.1);
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 100px 0;
    background: #fff;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    color: #111827;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3 i {
    color: #4169e1;
    font-size: 20px;
}

.faq-item p {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.6;
}

/* Pricing CTA Section */
.pricing-cta-section {
    background: #111827;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.pricing-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-cta-section p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles for pricing page */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px;
    }

    .pricing-hero h1 {
        font-size: 36px;
    }

    .pricing-hero p {
        font-size: 16px;
    }

    .pricing-plans {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        grid-column: span 1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .pricing-cta-section h2 {
        font-size: 28px;
    }

    .pricing-cta-section p {
        font-size: 16px;
    }

    .pricing-card {
        padding: 25px;
    }
    
    .pricing-features h4 {
        font-size: 15px;
        margin: 20px 0 12px;
    }
    
    .pricing-features li {
        font-size: 13px;
        margin-bottom: 8px;
    }
} 

/* Individual Services Pricing */
.individual-services-pricing {
    padding: 100px 0;
    background: #fff;
}

.individual-services-pricing h2 {
    text-align: center;
    font-size: 36px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.individual-services-pricing .section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-price-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #4169e1, #3154b4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-price-card:hover::before {
    opacity: 1;
}

.service-price-card .service-icon {
    width: 50px;
    height: 50px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-price-card .service-icon i {
    font-size: 24px;
    color: #4169e1;
}

.service-price-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
}

.service-price-card .price-tag {
    font-size: 24px;
    color: #4169e1;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-price-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex-grow: 1;
}

.service-price-card .service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4B5563;
    font-size: 14px;
    margin-bottom: 10px;
}

.service-price-card .service-features i {
    color: #4169e1;
    font-size: 12px;
}

.service-price-card .service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: transparent;
    color: #4169e1;
    border: 2px solid #4169e1;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-price-card .service-cta:hover {
    background: #4169e1;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive styles for individual services pricing */
@media (max-width: 1200px) {
    .services-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .services-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .individual-services-pricing {
        padding: 60px 0;
    }

    .individual-services-pricing h2 {
        font-size: 28px;
    }

    .individual-services-pricing .section-subtitle {
    font-size: 16px;
        margin-bottom: 40px;
    }

    .services-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-price-card {
        padding: 25px;
    }
}

.pricing-header h3 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pricing-header h3 {
        font-size: 28px;
    }
}

.price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price .currency {
    font-size: 30px;
    color: #111827;
    font-weight: 600;
    margin-right: 4px;
}

.price .amount {
    font-size: 56px;
    color: #111827;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

.price .period {
    font-size: 18px;
    color: #6B7280;
    margin-left: 4px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .price .currency {
        font-size: 26px;
    }
    
    .price .amount {
        font-size: 48px;
    }
    
    .price .period {
        font-size: 16px;
    }
}

/* Case Studies Page Styles */
.case-studies-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.case-studies-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.case-studies-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.case-studies-grid {
    padding: 100px 0;
    background: #f8fafc;
}

.case-study-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.case-study-content {
    padding: 40px;
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.client-info h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.client-info .category {
    color: #4169e1;
    font-size: 16px;
    font-weight: 500;
}

.duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: 15px;
}

.duration i {
    color: #4169e1;
}

.case-study-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.growth-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
}

.metric {
    text-align: center;
}

.metric .label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #333;
}

.metric .label i {
    color: #4169e1;
    font-size: 1.1em;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.before {
    color: #6B7280;
    font-size: 20px;
    font-weight: 600;
}

.before-after i {
    color: #4169e1;
    font-size: 16px;
}

.after {
    color: #4169e1;
    font-size: 24px;
    font-weight: 700;
}

.case-study-details {
    margin-bottom: 40px;
}

.case-study-details h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.case-study-details p {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.case-study-details ul {
    list-style: none;
    padding: 0;
}

.case-study-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4B5563;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.case-study-details li i {
    color: #4169e1;
    margin-right: 10px;
    font-size: 1.1em;
}

.testimonial {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    margin-bottom: 30px;
}

.testimonial i.fa-quote-left {
    color: #4169e1;
    opacity: 0.2;
    font-size: 2em;
    margin-bottom: 15px;
}

.testimonial blockquote {
    color: #111827;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 16px;
}

.testimonial cite {
    color: #6B7280;
    font-style: normal;
    font-weight: 500;
}

.case-study-cta {
    background: #f8fafc;
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.case-study-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #4169e1;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-study-cta .cta-button:hover {
    background: #3154b4;
    transform: translateY(-2px);
}

.case-studies-cta {
    background: #111827;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.case-studies-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.case-studies-cta p {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles for case studies */
@media (max-width: 1024px) {
    .growth-metrics {
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .case-studies-hero {
        padding: 100px 0 60px;
    }

    .case-studies-hero h1 {
        font-size: 36px;
    }

    .case-studies-hero p {
        font-size: 16px;
    }

    .case-studies-grid {
        padding: 60px 0;
    }

    .case-study-content {
        padding: 30px;
    }

    .case-study-header {
        flex-direction: column;
        gap: 15px;
    }

    .client-info h2 {
        font-size: 28px;
    }

    .case-study-image {
        margin: -30px -30px 25px;
        height: 300px;
    }

    .growth-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial {
        padding: 25px;
    }

    .testimonial blockquote {
        font-size: 16px;
    }

    .case-studies-cta h2 {
        font-size: 28px;
    }

    .case-studies-cta p {
        font-size: 16px;
    }
}

.case-study-content .testimonials-grid {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
}

.case-study-content .testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.case-study-content .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.case-study-content .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.case-study-content .client-info .icon {
    width: 45px;
    height: 45px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-content .client-info .icon i {
    font-size: 20px;
    color: #4169e1;
}

.case-study-content .client-details h3 {
    font-size: 16px;
    color: #111827;
    margin-bottom: 4px;
    font-weight: 600;
}

.case-study-content .client-details p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.case-study-content .rating {
    margin-bottom: 12px;
}

.case-study-content .rating i {
    color: #FFB800;
    font-size: 14px;
    margin-right: 2px;
}

.case-study-content .review {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .case-study-content .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .case-study-content .testimonial-card {
        padding: 20px;
    }
}

@keyframes highlightSection {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(65, 105, 225, 0.1);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(65, 105, 225, 0.2);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(65, 105, 225, 0.1);
    }
}

.highlight-section {
    animation: highlightSection 2s ease;
}

/* Individual Service Pricing */
.individual-pricing {
    padding: 100px 0;
    background: #fff;
}

.individual-pricing h2 {
    text-align: center;
    font-size: 36px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.individual-pricing .section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.individual-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.individual-pricing .pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.individual-pricing .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.individual-pricing .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #4169e1, #3154b4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.individual-pricing .pricing-card:hover::before {
    opacity: 1;
}

.individual-pricing .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.individual-pricing .service-icon i {
    font-size: 28px;
    color: #4169e1;
}

.individual-pricing .pricing-card h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
}

.individual-pricing .price {
    font-size: 24px;
    color: #4169e1;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.individual-pricing .features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.individual-pricing .features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4B5563;
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.individual-pricing .features li i {
    color: #4169e1;
    font-size: 14px;
    flex-shrink: 0;
}

.individual-pricing .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: #4169e1;
    border: 2px solid #4169e1;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.individual-pricing .cta-button:hover {
    background: #4169e1;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive styles for individual pricing */
@media (max-width: 1200px) {
    .individual-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .individual-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .individual-pricing {
        padding: 60px 0;
    }

    .individual-pricing h2 {
        font-size: 28px;
    }

    .individual-pricing .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .individual-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .individual-pricing .pricing-card {
        padding: 25px;
    }

    .individual-pricing .service-icon {
        width: 50px;
        height: 50px;
    }

    .individual-pricing .service-icon i {
        font-size: 24px;
    }

    .individual-pricing .pricing-card h3 {
        font-size: 20px;
    }

    .individual-pricing .features li {
        font-size: 14px;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.faq-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.faq-main {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-intro h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-intro p {
    color: #6B7280;
    font-size: 18px;
    line-height: 1.6;
}

.faq-intro a {
    color: #4169e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-intro a:hover {
    color: #3154b4;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.faq-category h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(65, 105, 225, 0.1);
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question h4 {
    font-size: 16px;
    color: #111827;
    font-weight: 600;
    margin: 0;
    padding-right: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-question .toggle-icon {
    width: 24px;
    height: 24px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
}

.faq-question .toggle-icon i {
    color: #4169e1;
    font-size: 12px;
    transition: all 0.3s ease;
}

.faq-question.active {
    background: rgba(65, 105, 225, 0.05);
}

.faq-question.active .toggle-icon {
    background: #4169e1;
    transform: rotate(180deg);
}

.faq-question.active .toggle-icon i {
    color: #fff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.faq-answer li {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4169e1;
}

.faq-cta {
    text-align: center;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-cta h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-cta p {
    color: #6B7280;
        font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.faq-cta .primary-btn,
.faq-cta .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta .primary-btn {
    background: #4169e1;
    color: #fff;
}

.faq-cta .primary-btn:hover {
    background: #3154b4;
    transform: translateY(-2px);
}

.faq-cta .secondary-btn {
    background: rgba(65, 105, 225, 0.1);
    color: #4169e1;
}

.faq-cta .secondary-btn:hover {
    background: rgba(65, 105, 225, 0.15);
    transform: translateY(-2px);
}

/* Responsive styles for FAQ page */
@media (max-width: 1024px) {
    .faq-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 60px;
    }

    .faq-hero h1 {
        font-size: 36px;
    }

    .faq-hero p {
        font-size: 16px;
    }

    .faq-main {
        padding: 60px 0;
    }

    .faq-intro h2 {
        font-size: 28px;
    }

    .faq-intro p {
        font-size: 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-category h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-cta {
        padding: 40px 20px;
    }

    .faq-cta h2 {
        font-size: 28px;
    }

    .faq-cta p {
        font-size: 16px;
    }

    .faq-cta .cta-buttons {
        flex-direction: column;
    }

    .faq-cta .primary-btn,
    .faq-cta .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

main {
    flex: 1;
}

/* Achievement Stats Section */
.achievement-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px;
    min-width: 240px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-item:hover .stat-bg {
    opacity: 1;
    transform: scale(1.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4169e1 0%, #3154b4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.stat-icon i {
    color: #fff;
    font-size: 28px;
}

.stat-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-number {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.stat-label {
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.15) 0%, transparent 70%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

/* Responsive styles for stats */
@media (max-width: 1024px) {
    .achievement-stats {
        gap: 20px;
    }

    .stat-item {
        padding: 30px;
        min-width: 220px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .stat-icon i {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .achievement-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        padding: 0 20px;
    }

    .stat-item {
        width: 100%;
        max-width: 280px;
        padding: 25px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .stat-icon i {
        font-size: 22px;
    }

    .stat-icon i {
        font-size: 22px;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.privacy-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.privacy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 30px;
    color: #4169e1;
    font-size: 15px;
    margin-bottom: 40px;
}

.last-updated i {
    font-size: 14px;
}

.privacy-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.privacy-section p {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-card h3 i {
    color: #4169e1;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: #4B5563;
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4169e1;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
        margin-top: 30px;
}

.usage-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-5px);
    background: #f1f5f9;
}

.usage-item i {
    font-size: 24px;
    color: #4169e1;
    margin-bottom: 15px;
}

.usage-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 600;
}

.usage-item p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.security-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.security-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4B5563;
    font-size: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.security-features li i {
    color: #4169e1;
    font-size: 18px;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.cookie-type {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.cookie-type h4 {
    color: #111827;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-type p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.third-party-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.third-party-info li {
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 10px;
    color: #4B5563;
    font-size: 15px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.right-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    background: #f1f5f9;
}

.right-item i {
    font-size: 24px;
    color: #4169e1;
    margin-bottom: 15px;
}

.right-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 600;
}

.right-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.contact-methods-privacy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
}

.contact-method i {
    font-size: 24px;
    color: #4169e1;
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-method p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

/* Responsive styles for privacy page */
@media (max-width: 1024px) {
    .usage-grid,
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .contact-methods-privacy {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px;
    }

    .privacy-hero h1 {
        font-size: 36px;
    }

    .privacy-hero p {
        font-size: 16px;
    }

    .privacy-content {
        padding: 60px 0;
    }

    .privacy-section {
        padding: 30px;
    }

    .privacy-section h2 {
        font-size: 28px;
    }

    .usage-grid,
    .rights-grid,
    .cookie-types,
    .contact-methods-privacy {
        grid-template-columns: 1fr;
    }

    .third-party-info ul {
        grid-template-columns: 1fr;
    }
}

/* Terms of Service Page Styles */
.terms-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.terms-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.terms-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.terms-content {
    padding: 80px 0;
    background: #f8fafc;
}

.terms-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.terms-section h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 24px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.terms-section p {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.definitions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.definition-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.definition-item:hover {
    transform: translateY(-5px);
    background: #f1f5f9;
}

.definition-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 600;
}

.definition-item h3 i {
    color: #4169e1;
}

.definition-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.responsibility-list {
    display: grid;
    gap: 20px;
}

.responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.responsibility-item:hover {
    transform: translateX(5px);
    background: #f1f5f9;
}

.responsibility-item i {
    color: #4169e1;
    font-size: 20px;
    margin-top: 3px;
}

.responsibility-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 600;
}

.responsibility-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.payment-item {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    background: #f1f5f9;
}

.payment-item i {
    font-size: 24px;
    color: #4169e1;
        margin-bottom: 15px;
    }

.payment-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.refund-terms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.refund-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.refund-item:hover {
    transform: translateY(-5px);
    background: #f1f5f9;
}

.refund-item i {
    color: #4169e1;
    font-size: 20px;
}

.refund-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 600;
}

.refund-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.limitations-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
}

.limitations-list li {
    display: flex;
    align-items: center;
        gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    color: #4B5563;
    font-size: 15px;
    transition: all 0.3s ease;
}

.limitations-list li:hover {
    transform: translateX(5px);
    background: #f1f5f9;
}

.limitations-list li i {
    color: #4169e1;
    font-size: 18px;
    flex-shrink: 0;
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.ip-item {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.ip-item:hover {
    transform: translateY(-5px);
    background: #f1f5f9;
}

.ip-item i {
    font-size: 24px;
    color: #4169e1;
    margin-bottom: 15px;
}

.ip-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 600;
}

.ip-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.law-content {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-methods-terms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Responsive styles for terms page */
@media (max-width: 1024px) {
    .definitions-grid,
    .payment-grid,
    .ip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .refund-terms {
        grid-template-columns: 1fr;
    }

    .contact-methods-terms {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 100px 0 60px;
    }

    .terms-hero h1 {
        font-size: 36px;
    }

    .terms-hero p {
        font-size: 16px;
    }

    .terms-content {
        padding: 60px 0;
    }

    .terms-section {
        padding: 30px;
    }

    .terms-section h2 {
        font-size: 28px;
    }

    .definitions-grid,
    .payment-grid,
    .ip-grid,
    .contact-methods-terms {
        grid-template-columns: 1fr;
    }

    .responsibility-item,
    .refund-item {
        flex-direction: column;
        text-align: center;
    }

    .responsibility-item i,
    .refund-item i {
        margin: 0 auto 15px;
    }
}

/* Cookie Policy Page Styles */
.cookie-hero {
    background: #111827;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cookie-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cookie-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.cookie-hero p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.cookie-content {
    padding: 80px 0;
    background: #f8fafc;
}

.cookie-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cookie-explanation {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.explanation-card {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
}

.explanation-card i {
    font-size: 48px;
    color: #4169e1;
    margin-bottom: 20px;
}

.explanation-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookie-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #4169e1;
    font-size: 18px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.usage-card {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.usage-card:hover {
    transform: translateY(-5px);
    background: #f1f5f9;
}

.usage-card i {
    font-size: 32px;
    color: #4169e1;
    margin-bottom: 20px;
}

.usage-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 600;
}

.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.type-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.type-header i {
    font-size: 24px;
    color: #4169e1;
}

.type-header h3 {
    font-size: 18px;
    color: #111827;
    margin: 0;
    font-weight: 600;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-left: auto;
}

.essential .badge {
    background: rgba(65, 105, 225, 0.1);
    color: #4169e1;
}

.type-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.type-card ul li {
    color: #4B5563;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.type-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4169e1;
}

.management-options {
    display: grid;
    gap: 30px;
}

.browser-settings {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
}

.browser-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.browser-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.browser-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.browser-item i {
    font-size: 24px;
    color: #4169e1;
}

.cookie-controls {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.control-btn.primary {
    background: #4169e1;
    color: #fff;
}

.control-btn.secondary {
    background: rgba(65, 105, 225, 0.1);
    color: #4169e1;
}

.control-btn:hover {
    transform: translateY(-2px);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.partner-card {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    background: #f1f5f9;
}

.partner-card i {
    font-size: 32px;
    color: #4169e1;
    margin-bottom: 15px;
}

.partner-card h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 600;
}

.update-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
}

.update-info i {
    font-size: 24px;
    color: #4169e1;
}

.contact-methods-cookies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Responsive styles for cookie policy */
@media (max-width: 1024px) {
    .cookie-features,
    .usage-grid,
    .cookie-types-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .browser-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cookie-hero {
        padding: 100px 0 60px;
    }

    .cookie-hero h1 {
        font-size: 36px;
    }

    .cookie-hero p {
        font-size: 16px;
    }

    .cookie-content {
        padding: 60px 0;
    }

    .cookie-section {
        padding: 30px;
    }

    .cookie-features,
    .usage-grid,
    .cookie-types-grid,
    .partners-grid,
    .contact-methods-cookies {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert i {
    font-size: 20px;
}

.alert.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Form Validation Styles */
.contact-form input:invalid,
.contact-form textarea:invalid {
    border-color: #dc2626;
}

.contact-form input:invalid:focus,
.contact-form textarea:invalid:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group label span {
    color: #dc2626;
}

/* Enhanced Form Styles */
.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4169e1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #4169e1;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: #3154b4;
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Contact Method Links */
.contact-method a {
    color: #4169e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #3154b4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-card,
    .info-card {
        padding: 25px;
    }

    .submit-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .alert {
        padding: 12px 16px;
        font-size: 14px;
    }
}