/* Home Page Specific Styles */

/* Additional styling for home page specific elements */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Home page specific adjustments */
.home-hero {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #005EB8 0%, #004F9F 100%);
    color: white;
    text-align: center;
}

.home-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.home-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}
