
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background-color: rgba(250, 200, 205, 0.1);
    color: rgba(73, 93, 99, 1);
    line-height: 1.6;
}

.menu-toggle {
    display: none;
}


header#head {
    background: linear-gradient(135deg, #2e8b57, #3a7d44);
    padding: 2rem 1rem;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

header#head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.05)"><path d="M50,10 C60,20 65,35 60,50 C55,65 40,70 25,65 C10,60 5,45 10,30 C15,15 30,10 45,15 C60,20 65,35 60,50 C55,65 40,70 25,65 C10,60 5,45 10,30 C15,15 30,10 45,15 Z"/></svg>');
    background-size: 100px;
    opacity: 0.3;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.logo-container {
    text-align: left;
}

.header-phones {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.header-phones a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
}

.header-phones a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #ffd700;
    border-radius: 3px;
}

.logo:hover {
    transform: scale(1.05);
}

.slogan {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}


[...]


@media (max-width: 768px) 
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .header-phones {
        align-items: center;
        margin-top: 1rem;
    }
    
    .header-phones a {
        font-size: 1.1rem;
    }


@media (max-width: 480px) {
    .header-phones {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-phones a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .slogan {
        font-size: 1.1rem;
    }
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #ffd700;
    border-radius: 3px;
}

.logo:hover {
    transform: scale(1.05);
}

.slogan {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}


nav {
    background-color: rgba(73, 93, 99, 1);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    transition: max-height 0.3s ease-in-out;
    max-height: none;
    overflow: visible;
    flex-direction: row;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        background-color: rgba(73, 93, 99, 1);
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 100;
    }

    nav ul.show {
        max-height: 300px;
    }
}

nav ul li {
    margin: 0 1.2rem;
    text-align: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1.1rem;
    display: block;
}

nav ul li a:hover {
    background-color: rgba(98, 150, 119, 1);
    transform: translateY(-2px);
}


.btn,
.btn-small {
    display: inline-block;
    background-color: rgba(73, 93, 99, 1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn {
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

.btn:hover,
.btn-small:hover {
    background-color: rgba(98, 150, 119, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.hero {
    background-image:
        linear-gradient(rgba(73, 93, 99, 0.7), rgba(73, 93, 99, 0.7)),
        url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 800px;
    padding: 2.5rem;
    background-color: rgba(152, 182, 177, 0.8);
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: rgba(119, 14, 24, 0.9);
}


.offer-section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(73, 93, 99, 1);
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background-color: rgba(98, 150, 119, 1);
    margin: 1rem auto;
    border-radius: 2px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.offer-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.offer-img {
    height: 200px;
    background-color: rgba(152, 182, 177, 0.3);
    background-size: cover;
    background-position: center;
    transition: all 0.5s;
}

.offer-item:hover .offer-img {
    transform: scale(1.05);
}

.offer-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-content h3 {
    color: rgba(73, 93, 99, 1);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.offer-content p {
    margin-bottom: 1.5rem;
    color: rgba(73, 93, 99, 0.8);
    flex-grow: 1;
}


.about-section {
    align-items: center;
    margin-bottom: 4rem;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    padding: 3rem;
    min-width: 300px;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}


footer {
    background-color: rgba(73, 93, 99, 1);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

.footer-section h3 {
    color: rgba(250, 200, 205, 1);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: rgba(98, 150, 119, 1);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.8rem;
    color: rgba(215, 188, 200, 0.9);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(215, 188, 200, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: rgba(250, 200, 205, 1);
}

.fb-link {
    color: #15a35c !important;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
}

.fb-link:hover {
    color: white !important;
    background-color: hsl(133, 67%, 33%);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(152, 182, 177, 0.3);
    color: rgba(215, 188, 200, 0.7);
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }
    
    .slogan {
        font-size: 1.1rem;
    }
    
    nav {
        position: sticky;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 0.5rem;
        right: 1rem;
        background-color: rgba(73, 93, 99, 1);
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        font-size: 1.2rem;
        cursor: pointer;
        border-radius: 4px;
        z-index: 101;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        background-color: rgba(73, 93, 99, 1);
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 100;
    }

    nav ul.visible {
        max-height: 300px;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-img {
        order: -1;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero {
        height: 350px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
}