.section-padding {
    padding-top: 10px; /* Reduced from 120px */
}
.header-center {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 100px; /* Reduced from 140px to move it up */
}

.title-main {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}
@media (min-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.subtitle-main {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin:  auto;
}
.pricing-card {
    padding-top: 2.5rem !important;
}
.title-main, .subtitle-main {
    margin-top: 0.5rem;
    margin-bottom: 0;
}
.faq-section {
    max-width: 800px;
    width: 90%; /* Prevents text from touching edges on small screens */
    margin: 3rem auto 0;
    border-top: 1px solid rgba(132, 129, 192, 0.2);
    padding: 3rem 1.5rem; /* Adds spacing inside the section */
}
/* Payment Section */
.payment-trust-section {
    text-align: center;
    margin: 3rem auto;
    padding: 2rem;
    max-width: 800px;
    background: rgba(19, 22, 40, 0.5);
    border: 1px solid rgba(132, 129, 192, 0.2);
    border-radius: 12px;
}

.payment-trust-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.payment-trust-section p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 2.5rem;
    color: var(--color-text-secondary);
}

.payment-logos i:first-child {
    color: var(--color-success);
    font-size: 2rem;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 3rem auto 0;
    border-top: 1px solid rgba(132, 129, 192, 0.2);
    padding-top: 3rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}
.back-to-home {
            display: inline-block;
            margin-top: var(--space-16);
            color: var(--glow-blue); /* Corrected variable */
            font-weight: 500;
            text-decoration: none;
        }
        .back-to-home:hover {
            color: var(--glow-purple); /* Corrected variable */
        }