/* About Section */
.about-section {
    background: #f9f9fb;
    padding: 4rem 1rem 6rem;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* color: #c71585; */
}

.section-header p {
    font-size: 1.2rem;
    font-weight: 400;
    /* color: #5a2a5b; */
}

/* Grid Container */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Card */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(199, 21, 133, 0.1); /* substitute for var(--shadow-sm) */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(199, 21, 133, 0.25);
    transform: translateY(-8px);
    cursor: default;
}

/* Icon Container */
.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

/* Individual icon backgrounds for clarity */
.verified-profiles .feature-icon {
    background: #dcfce7; /* light green */
    color: #26632a;
}

.large-community .feature-icon {
    background: #dbeafe; /* light blue */
    color: #1e3a8a;
}

.advanced-matching .feature-icon {
    background: #fdf2f8; /* light pink */
    color: #9d174d;
}

/* Card Headings */
.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c71585;
    margin-bottom: 0.5rem;
}

/* Card Paragraphs */
.feature-card p {
    font-size: 1rem;
    font-weight: 400;
    color: #6a4a6a;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .features-grid {
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
}
