/* Content pages main wrapper */
main.content-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Content sections for legal and information pages */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.content-section h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-section h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.content-section p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--card-background);
}

.content-section table th,
.content-section table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.content-section table th {
    background-color: var(--secondary-color);
    font-weight: 600;
    color: var(--text-color);
}

/* General styles for hero sections on content pages */
.hero-intro {
    padding: 20px;
    background-color: var(--card-background);
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.hero-headline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.hero-subheadline {
    font-size: 0.95rem;
    color: var(--light-text-color);
    max-width: 100%;
    margin: 0;
}

/* Pricing Plans Section */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-card {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.plan-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 6px 15px rgba(0, 188, 212, 0.2);
}

.plan-card h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.plan-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.plan-card .price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-text-color);
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-card ul li {
    margin-bottom: 0.6rem;
    color: var(--light-text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.plan-card ul li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.plan-card .btn-primary,
.plan-card .btn-outline {
    width: 100%;
}

/* Security Features Section */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
    padding: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    display: block;
}

.feature-card h2 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--light-text-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
    padding: 20px;
    margin-bottom: 20px;
}

.faq-section h2 {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--light-text-color);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 20px;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.cta-section h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.cta-section p {
    font-size: 0.95rem;
    color: var(--light-text-color);
    max-width: 100%;
    margin: 0 0 1rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 1.5rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
    }

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

    .plan-card,
    .feature-card {
        padding: 15px;
    }

    .plan-card h2,
    .feature-card h2 {
        font-size: 1.2rem;
    }

    .plan-card .price {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }
}
