/* styles/about.css */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 36px;
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.content-section h3 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .content-section {
        padding: 15px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section p {
        font-size: 16px;
    }
}
