/* Contact Widget Styles */
.contact-widget {
    background-color: #e5f7fd;
    color: #1e3268;
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-widget-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
}

/* Header section (left side on desktop) */
.contact-widget-header {
    flex: 1 1 50%;
    min-width: 0;
}

.contact-widget-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3268;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-widget-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1e3268;
    margin-bottom: 0;
}

/* Contacts section (right side on desktop) */
.contact-widget-contacts {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-widget-item {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1.25rem;
    border-radius: 6px;
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3268;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.contact-phone,
.contact-email {
    display: block;
    color: #1e3268;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.contact-phone:last-child,
.contact-email:last-child {
    margin-bottom: 0;
}

.contact-phone:hover,
.contact-email:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .contact-widget {
        padding: 1.5rem;
    }

    .contact-widget-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-widget-header,
    .contact-widget-contacts {
        flex: 1 1 100%;
    }

    .contact-widget-title {
        font-size: 1.5rem;
    }

    .contact-widget-item {
        padding: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .contact-widget {
        padding: 1rem;
    }

    .contact-widget-title {
        font-size: 1.25rem;
    }

    .contact-name {
        font-size: 1.1rem;
    }

    .contact-email,
    .contact-phone {
        font-size: 0.9rem;
    }
}
