/* Holistic SEO Advantages Section Styles */

.features-section {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.features-section .container {
    max-width: 1200px;
    width: 100%;
}

/* Header Styling */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-header h3 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Card Styling */
.card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.icon-wrapper {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: #2563eb;
}

/* Card Text Styling */
.card .card-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 800;
    text-align: center;
    width: 100%;
}

.card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

/* Button Styling */
.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .section-header h3 {
        font-size: 2.25rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .features-section {
        padding: 3rem 1rem;
    }

    .section-header h3 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}
