@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"); /* Using a url */
/* --- SECTION CONTAINER --- */
        .why-choose-section {
            padding: 5rem 1.5rem;
            background-color: var(--bg-light);
            max-width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- HEADER --- */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--text-light);
        }

        /* --- GRID LAYOUT --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        /* --- CARD DESIGN --- */
        .feature-card {
            background: #e7e7e7;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid transparent;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Hover Effect */
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--accent);
        }

 
        /* --- TEXT CONTENT --- */
        .feature-card h3 {
    
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 768px) {
            .section-header h2 { font-size: 2rem; }
            .features-grid { grid-template-columns: 1fr; }
        }