/* Общие стили для текста */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Нейтральный фон */
}

/* Заголовки */
h1, h2, h3 {
    color: #444; /* Более темный оттенок для акцента */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
}

h2 {
    font-size: 2em;
    font-weight: semi-bold;
}

h3 {
    font-size: 1.5em;
    font-weight: normal;
}

/* Ссылки */
a {
    color: #f57c00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff9800;
    text-decoration: underline;
}

/* Основная кнопка */
button, .btn {
    background-color: #f57c00;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover, .btn:hover {
    background-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Вторичная кнопка */
.secondary-btn {
    background-color: #fff;
    color: #f57c00;
    border: 2px solid #f57c00;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.secondary-btn:hover {
    background-color: #f57c00;
    color: #fff;
}

/* Основной контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Секции */
.section {
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section:nth-child(odd) {
    background-color: #f9f9f9;
}

/* Сетки */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 15px;
    min-width: 300px;
}

/* Формы */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1em;
    color: #333;
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #f57c00;
    box-shadow: 0 0 5px rgba(245, 124, 0, 0.5);
}

button[type="submit"] {
    background-color: #f57c00;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #ff9800;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    .row {
        flex-direction: column;
    }

    button, .btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}

/* Анимация появления */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Плавное появление кнопок */
.btn-animate {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-animate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 5px;
    z-index: 0;
}

.btn-animate:hover::before {
    transform: scale(3);
}

