/* General Styling */
body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f3f4f6;
}

/* Header */
header {
    background-color: #0056d2;
    color: white;
    padding: 0.7rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    font-style: italic;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ffdd57;
    text-decoration: underline;
}

/* Sections */
section {
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
    max-width: 900px;
    background: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

section h2 {
    color: #0056d2;
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 2rem;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 0.25rem;
}

ul {
    list-style: disc inside;
    margin-left: 1rem;
    font-size: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #222;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

footer a {
    color: #0056d2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #aaa;
}

/* Contact Section */
section#contact a {
    text-decoration: none;
    color: #0056d2;
    font-weight: 500;
    transition: color 0.3s ease;
}

section#contact a:hover {
    color: #aaa;
}

section#contact a i {
    color: #aaa;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s ease; /* Smooth transition on hover */
}

section#contact a:hover i {
    color: #0056d2;
}

/* Responsive Design */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1rem;
    }

    section {
        padding: 2rem 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }
}
