/* Global Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f1f5f9;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #e67e22;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
#hero {
    padding-top: 150px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Features Section */
#features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* About Section */
#about {
    background-color: #f1f5f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Services Section */
#services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

/* Pricing Section */
#pricing {
    background-color: #f1f5f9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    padding: 30px;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

.pricing-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}


/* Testimonials Page Styles */
.testimonials-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.testimonials-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.testimonials-hero p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.testimonial-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.testimonial-category {
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-category:hover, .testimonial-category.active {
    background: var(--secondary);
    color: var(--dark);
}

.video-testimonial {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.video-testimonial video {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: var(--dark);
    font-size: 1.5rem;
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-stats {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
}

/* Blog Section */
#blog {
    background-color: #f1f5f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* FAQ Section */
#faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8fafc;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section */
#cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

#cta h2, #cta p {
    color: white;
}

#cta p {
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

/* Contact Section */
#contact {
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #334155;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Page Transitions */
.page {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .hero-content, .about-content, .contact-container {
        flex-direction: column;
    }
    .hero-text, .about-text, .contact-info, .contact-form {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .hero-btns, .cta-btns {
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .stats {
        flex-direction: column;
        gap: 30px;
    }

}

/* --- Enhanced 4-Step SEO Process Styles --- */
#service-process {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}
#service-process .features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    margin-top: 60px;
}
#service-process .feature-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 48px 32px 40px 32px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    border: 2px solid #e0e7ff;
}
#service-process .feature-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 16px 40px rgba(37,99,235,0.13), 0 2px 8px rgba(0,0,0,0.06);
    border-color: var(--primary);
}
#service-process .feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    box-shadow: 0 4px 16px rgba(37,99,235,0.10);
    border: 4px solid #fff;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s;
}
#service-process .feature-card:hover .feature-icon {
    box-shadow: 0 8px 32px rgba(245,158,11,0.18);
}
#service-process .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-dark);
}
#service-process .feature-card p {
    color: var(--gray);
    font-size: 1.05rem;
}
/* Connecting line between steps (desktop only) */
@media (min-width: 900px) {
  #service-process .features-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 0;
    border-radius: 2px;
    transform: translateY(-50%);
  }
  #service-process .feature-card {
    background-clip: padding-box;
  }
  #service-process .feature-icon {
    position: relative;
    z-index: 2;
  }
}
/* Responsive for mobile */
@media (max-width: 900px) {
  #service-process .features-grid {
    flex-direction: column;
    gap: 32px;
  }
  #service-process .features-grid::before {
    display: none;
  }
}

/* --- Enhanced Pricing Plans Styles --- */
#pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding-bottom: 80px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.pricing-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    border: 2px solid #e0e7ff;
}
.pricing-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 16px 40px rgba(37,99,235,0.13), 0 2px 8px rgba(0,0,0,0.06);
    border-color: var(--primary);
}
.pricing-header {
    padding: 36px 30px 28px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    border-bottom: 1px solid #e0e7ff;
    position: relative;
}
.pricing-header h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pricing-price {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary);
}
.pricing-popular {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: white;
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245,158,11,0.12);
    letter-spacing: 0.5px;
    z-index: 2;
    border: 2px solid #fff;
}
.pricing-card[style*="primary-dark"] {
    border: 3px solid var(--secondary);
    box-shadow: 0 16px 40px rgba(245,158,11,0.13), 0 2px 8px rgba(0,0,0,0.06);
}
.pricing-body {
    padding: 32px 30px 36px 30px;
    background: #f8fafc;
}
.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}
.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.08rem;
}
.pricing-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}
.pricing-comparison {
    margin: 60px auto 0 auto;
    max-width: 900px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.07);
    padding: 32px 20px 24px 20px;
    overflow-x: auto;
}
.pricing-comparison table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.05rem;
    background: transparent;
}
.pricing-comparison th, .pricing-comparison td {
    padding: 14px 10px;
    text-align: center;
    border-bottom: 1px solid #e0e7ff;
}
.pricing-comparison th {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    border-radius: 6px 6px 0 0;
}
.pricing-comparison tr:last-child td {
    border-bottom: none;
}
@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-comparison {
        padding: 16px 2px;
    }
}

/* --- Enhanced Pricing FAQ Styles --- */
#pricing-faq {
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
    padding: 80px 0 60px 0;
}
#pricing-faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}
#pricing-faq .faq-item {
    background: white;
    margin-bottom: 24px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(37,99,235,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    border: 2px solid #e0e7ff;
    transition: box-shadow 0.3s, border-color 0.3s;
}
#pricing-faq .faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(37,99,235,0.13), 0 2px 8px rgba(0,0,0,0.06);
}
#pricing-faq .faq-question {
    padding: 24px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    background: linear-gradient(90deg, #f8fafc 60%, #e0e7ff 100%);
    color: var(--primary-dark);
    transition: background 0.3s;
}
#pricing-faq .faq-item.active .faq-question {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
}
#pricing-faq .faq-question:hover {
    background: #e0e7ff;
}
#pricing-faq .faq-answer {
    padding: 0 36px;
    max-height: 0;
    overflow: hidden;
    color: var(--gray);
    font-size: 1.05rem;
    background: #f8fafc;
    transition: max-height 0.4s cubic-bezier(.4,2,.6,1), padding 0.3s;
}
#pricing-faq .faq-item.active .faq-answer {
    padding: 0 36px 28px 36px;
    max-height: 500px;
    background: #f1f5f9;
    color: var(--primary-dark);
}
#pricing-faq .faq-toggle {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    transition: transform 0.3s, background 0.3s;
}
#pricing-faq .faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: rotate(45deg) scale(1.1);
}
@media (max-width: 600px) {
    #pricing-faq .faq-question, #pricing-faq .faq-answer {
        padding-left: 16px;
        padding-right: 16px;
    }
}