* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Georgia, serif; /* Более строгий, классический шрифт */
}

body {
    background-color: #fcfcfc;
    color: #2c2c2c;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.header {
    background: #111111;
    color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #8a1c1c; /* Тёмно-бордовый сдержанный акцент */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
}
.logo span { color: #b59253; } /* Сдержанное золото */

.nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    transition: color 0.3s;
}
.nav a:hover { color: #b59253; }

.phone-block {
    text-align: right;
}
.phone-link {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    display: block;
}
.phone-block span {
    font-size: 11px;
    color: #888;
    display: block;
    text-transform: uppercase;
}

/* Главный блок */
.hero {
    /* Путь идет относительно папки css, поэтому выходим на уровень вверх (../) и заходим в img */
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../img/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}
.hero h1 { font-size: 38px; margin-bottom: 20px; font-weight: normal; }
.hero p { 
    font-size: 18px; 
    margin-bottom: 40px; 
    color: #ddd; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: #8a1c1c;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 3px;
    transition: background 0.3s;
}
.btn:hover { background: #631313; }

/* Услуги */
.services { padding: 80px 0; background: #fff; }
.services h2 { text-align: center; margin-bottom: 50px; font-size: 30px; font-weight: normal; position: relative;}
.services h2::after {
    content: ""; display: block; width: 60px; height: 1px; background: #b59253; margin: 15px auto 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background: #fdfdfd;
    padding: 30px;
    border: 1px solid #eee;
    border-top: 3px solid #8a1c1c;
}
.card h3 { margin-bottom: 15px; font-weight: normal; color: #111; }

/* Тарифные планы */
.packages { padding: 80px 0; background: #f5f5f5; }
.packages h2 { text-align: center; margin-bottom: 50px; font-size: 30px; font-weight: normal; }

.grid-packages {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.pack-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
}
.pack-card.популярный {
    border: 2px solid #b59253;
}
.badge {
    position: absolute; top: -15px; right: 20px; background: #b59253; color: #fff; padding: 3px 10px; font-size: 12px; text-transform: uppercase;
}
.pack-card h3 { margin-bottom: 10px; font-size: 24px; font-weight: normal; }
.price { font-size: 28px; color: #8a1c1c; margin-bottom: 25px; font-weight: bold; }
.pack-card ul { list-style: none; }
.pack-card ul li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 15px; color: #555; }
.pack-card ul li:last-child { border-bottom: none; }

/* Подвал */
.footer {
    background: #111;
    color: #666;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    border-top: 1px solid #222;
}