/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header Section */
header {
    background-color: #0070ba;
    color: white;
    text-align: center;
    padding: 2px 0;
    background: linear-gradient(135deg, #0070ba 0%, #005f99 100%);
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

header p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.contact-info {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #005f99;
    text-align: center;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    
}

.contact-info p strong {
    color: #0070ba;
    
}

ul.social-media {
    list-style: none;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

ul.social-media li {
    font-size: 1.1rem;
}

ul.social-media li a {
    text-decoration: none;
    color: #0070ba;
    transition: color 0.3s ease;
}

ul.social-media li a:hover {
    color: #005f99;
}

/* Footer */
footer {
    background-color: #0070ba;
    color: white;
    text-align: center;
    padding: 8px 0;
    margin-top: 50px;
}

footer p {
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }
}
