/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* Base body styles */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 10px;
    font-size: 16px;
}

/* Header styles */
header {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px 10px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

header p {
    font-size: 16px;
}

/* Hero section styles */
.hero {
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 20px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
}

/* Features section */
.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
}

/* Commitment section */
.commitment {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.commitment p {
    font-size: 16px;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* Media Queries for larger screens */
@media (min-width: 600px) {
    body {
        font-size: 18px;
        padding: 20px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p, .feature p {
        font-size: 16px;
    }

    .feature {
        padding: 20px;
    }
}
