/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

header p {
    font-size: 1.5rem;
}

.header-container {
    max-width: 1200px;
    margin: auto;
}

.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2a5298;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.feature:hover {
    transform: scale(1.05);
}

.feature h3 {
    color: #1e3c72;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
}

footer {
    background-color: #1e3c72;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
}

footer p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1.2rem;
    }
}
