* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: white;
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 4rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: linear-gradient(135deg, #f4f7ff 0%, #e6edff 100%);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-item p {
    /* font-size: 0.95rem; */
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-item a {
    text-decoration: none;
    font-weight: 500;
    color: #2563eb;
}


/* Emergency Mobile responsiveness */


@media (max-width: 768px) {
    .alert-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}