/* Общие стили */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button.primary {
    background-color: #007bff;
    color: #fff;
}

.button.primary:hover {
    background-color: #0056b3;
}

.button.secondary {
    background-color: #6c757d;
    color: #fff;
}

.button.secondary:hover {
    background-color: #545b62;
}

/* Шапка */
.header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
}

.header .nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

.header .nav a:hover {
    color: #ccc;
}

/* Герой */
.hero {
    padding: 80px 0;
    background-color: #e9ecef;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Фичи */
.features {
    padding: 60px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    margin-bottom: 20px;
    color: #007bff;
}

.feature-item h3 {
    margin-bottom: 15px;
}

/* Пакеты */
.packages {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.packages h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30