.contacts-layout {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts-info {
    max-width: 800px;
}

.contacts-info h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.contact-section {
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.working-hours {
    margin-top: 20px;
}

.working-hours h3 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-method i {
    font-size: 24px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 0.9rem;
    color: #666;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contacts-layout {
        padding: 20px 0;
        gap: 30px;
    }

    .contacts-info h1 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 1.3rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contacts-info h1 {
        font-size: 1.8rem;
    }

    .contact-method {
        padding: 12px;
    }

    .map-container iframe {
        height: 250px;
    }
} 