* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: #f4f4f4;
    padding-top: 60px;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
    font-family: 'Georgia', serif;
    font-weight: normal;
    line-height: 1.3;
}
a {
    text-decoration: none;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    min-height: 60px;
}
.site-title {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
#nav-menu {
    display: flex;
}
#nav-menu a {
    color: #ddd;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}
#nav-menu a:hover, #nav-menu a.active-link {
    color: #fff;
    font-weight: bold;
}
.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

.hero {
    height: auto;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.hero img.logo {
    width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.2rem;
    color: #222;
    display: inline-block;
    border-bottom: 2px solid #555;
    padding-bottom: 0.5rem;
}
.about-text {
    font-size: 1.1rem;
    text-align: justify;
    text-align-last: center;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    color: #444;
}
.btn-primary {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}
.btn-primary:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}
.text-center {
    text-align: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.card-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111;
}
.price {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}
.privacy-box, .address-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    color: #444;
}
.privacy-box h3, .address-box h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #222;
}
.privacy-box ul {
    margin-left: 20px;
    margin-bottom: 1rem;
}
.map-container {
    margin-top: 2rem;
    width: 100%;
    height: 450px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.phone-popup {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 15px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    width: max-content;
    border: 1px solid #eee;
}
.phone-popup.active {
    display: flex;
}
.phone-popup a {
    color: #333;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    transition: background 0.2s;
}
.phone-popup a:last-child {
    border-bottom: none;
}
.phone-popup a:hover {
    background: #f9f9f9;
    color: #111;
}
.call-btn {
    background-color: #2e7d32;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}
.call-btn:hover {
    background-color: #1b5e20;
}
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 3rem 5%;
    margin-top: 2rem;
    font-size: 0.95rem;
}
.footer-content {
    max-width: 800px;
    margin: 0 auto;
}
.footer-phones {
    color: white;
    font-size: 1.3rem;
    margin: 1.5rem 0;
}
.footer-phones a {
    color: white;
    margin: 0 10px;
    white-space: nowrap;
}
.footer-links {
    margin: 1.5rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
}
.footer-links a {
    color: #ddd;
    margin: 0 15px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-address {
    margin-bottom: 1.5rem;
    color: #ccc;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    .hamburger {
        display: block;
    }
    #nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(15, 15, 15, 0.98);
        padding: 1rem 0;
    }
    #nav-menu.active {
        display: flex;
    }
    #nav-menu a {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .about-text {
        text-align: left;
        text-align-last: auto;
    }
    .privacy-box, .address-box {
        padding: 1.5rem;
    }
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .call-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .footer-phones {
        font-size: 1.1rem;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}