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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 30px 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #002e6a;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    color: #002e6a;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

section {
    margin-bottom: 25px;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #002e6a;
    font-weight: 600;
}

p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

a {
    color: #002e6a;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

strong {
    font-weight: 600;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}
