/* Основні стилі сторінки */
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Заголовки */
h1, h2, h3 {
    color: #222;
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
}

/* Посилання */
a {
    text-decoration: none;
    color: #007BFF;
}

a:hover {
    color: #0056b3;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Шапка */
.header {
    background: #f7f7f7;
    text-align: center;
    padding: 50px 0;
}

.header__title {
    font-size: 40px;
    margin-bottom: 20px;
}

.header__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.header__btn {
    font-size: 18px;
}

/* Переваги */
.benefits {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.benefits-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.benefits-list__item {
    text-align: center;
    width: 30%;
}

.benefits-list__icon {
    margin-bottom: 15px;
}

.benefits-list__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefits-list__text {
    font-size: 16px;
}

/* Галерея */
.gallery-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-item__image {
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery-item__image:hover {
    transform: scale(1.05);
}

/* Форма */
.contact-form {
    background: #f4f4f4;
    padding: 40px 20px;
}

.contact-form .form__input,
.contact-form .form__textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form .form__btn {
    width: 100%;
    font-size: 18px;
    cursor: pointer;
}

/* Підвал */
.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer__text {
    margin: 0;
    font-size: 14px;
}
