﻿/* ===== Features Page ===== */

.features-page {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1f2937;
    line-height: 1.7;
}

    .features-page h1 {
        font-size: 2.3rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .features-page h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .features-page p {
        color: #4b5563;
    }


.feature-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}

    .feature-section:hover {
        transform: translateY(-2px);
        transition: all 0.25s ease;
    }


.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

    .feature-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
        font-size: 1rem;
    }

        .feature-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 1px;
            color: #16a34a;
            font-weight: 700;
            font-size: 1.05rem;
        }



.security-section {
    background: linear-gradient(135deg, #ecfeff, #f0fdf4);
    border-left: 6px solid #22c55e;
}

    .security-section h2 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.security-note {
    font-size: 0.9rem;
    color: #065f46;
    margin-top: 12px;
}



.feature-highlight {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px;
    font-weight: 500;
    margin-top: 15px;
    border-left: 4px solid #3b82f6;
}


@media (max-width: 768px) {
    .features-page h1 {
        font-size: 1.9rem;
    }

    .features-page h2 {
        font-size: 1.35rem;
    }

    .feature-section {
        padding: 22px;
    }
}
