/* Основні стилі */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: white;
    margin: 0;
    padding: 0;
}

.header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

iframe{
    width: 80%;
}

.header h1 {
    font-size: 2em;
    color: #ff784e;
    margin: 0;
}

.btn-home {
    background-color: transparent;
    color: #ff784e;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ff784e;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-home:hover {
    background-color: #ff784e;
    color: white;
}

.contact-main {
    text-align: center;
}

.contact-info, .contact-details {
    margin-bottom: 30px;
}

.contact-info h2, .contact-details h2 {
    color: #ff784e;
    font-size: 2em;
}

.contact-info p, .contact-details p {
    color: #cccccc;
    font-size: 1.2em;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff784e;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.map-link:hover {
    background-color: #e76d5e;
}

.footer {
    background-color: #141414;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    padding: 60px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-about h4,
.footer-links h4,
.footer-contact h4 {
    color: #ff784e;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 0.95em;
    color: #c0c0c0;
    line-height: 1.5;
    margin-top: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff784e;
}

.footer-contact p {
    color: #c0c0c0;
    font-size: 0.95em;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    color: #888888;
    padding-top: 20px;
    font-size: 0.85em;
}

/* Адаптивність */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about, .footer-links, .footer-contact {
        min-width: 100%;
    }
}


