body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Хедер з фірмовим салатовим кольором */
header {
    background: #97d935;
    color: #fff;
    padding: 0.7rem 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Меню-посилання */
header a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
    position: relative;
    padding: 6px 4px;
    display: inline-block;
    transition: color 0.3s ease;
}

/* Анімоване підкреслення */
header a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

header a:hover::after {
    width: 100%;
}

/* Анімація кольору */
header a:hover {
    color: #f6ffe4; /* світліший білий-салатовий */
}

/* Бургер-меню (мобільне) */
.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
}
.phone-text {
    line-height: 1.2;
}
.number {
    font-weight: 700;
    font-size: 1.1rem;
}
.work-hours {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Футер */
footer {
    background: #97d935;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
