/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

/* Стили для навигации */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #444;
}

/* Главная секция */
.hero {
    background: url('https://example.com/your-image.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.hero .btn {
    background-color: #f56a79;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
}

.hero .btn:hover {
    background-color: #f44359;
}

/* Секция услуг */
#services {
    padding: 50px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.service-list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.service-item {
    width: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    margin-bottom: 10px;
}

/* Секция отзывов */
#reviews {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.reviews-list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.review-item {
    width: 45%;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-item p {
    font-style: italic;
}

.review-item span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* Секция контактов */
#contact {
    padding: 50px 20px;
    background-color: #f7f7f7;
}

form {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form .btn {
    background-color: #f56a79;
    color: white;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
}

form .btn:hover {
    background-color: #f44359;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
