/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h2, h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
}

p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #666;
}

/* Section Styling */
.section {
    background-color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section h3 {
    font-size: 1.2em;
    color: #2c3e50;
    margin-top: 15px;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    .section {
        margin: 10px;
        padding: 15px;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1em;
    }

    p {
        font-size: 0.95em;
    }
}
