/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #0a0c12;
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: #11151f;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid #1b263b;
}

.header {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    padding: 50px 40px 40px;
    text-align: center;
    border-bottom: 1px solid #415a77;
}

.header h1 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    color: #778da9;
    letter-spacing: 1px;
}

.header .subtitle {
    font-size: 1.3rem;
    color: #a0b0c0;
    font-weight: 300;
}

.content {
    padding: 50px 60px;
}

.section {
    margin-bottom: 50px;
}

.section-title {
    color: #778da9;
    font-size: 1.8rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #415a77;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 4px;
    background: #415a77;
    border-radius: 2px;
}

p, li {
    font-size: 1.1rem;
    color: #d0d8e0;
    margin-bottom: 16px;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
}

ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #778da9;
    font-weight: bold;
}

.price {
    background: #1b263b;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #415a77;
    text-align: center;
    margin: 30px 0;
}

.price-big {
    font-size: 3.2rem;
    font-weight: bold;
    color: #778da9;
    margin: 15px 0;
}

.price-small {
    font-size: 1.4rem;
    color: #a0b0c0;
}

.contacts {
    background: #0d1b2a;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.contacts a {
    color: #778da9;
    text-decoration: none;
    font-weight: 500;
}

.contacts a:hover {
    color: #9bb3d4;
    text-decoration: underline;
}

.footer {
    background: #0a0c12;
    padding: 25px;
    text-align: center;
    font-size: 0.95rem;
    color: #778da9;
    border-top: 1px solid #1b263b;
}

/* Адаптив */
@media (max-width: 768px) {
    .container {
        margin: 10px;
    }
    .header {
        padding: 40px 25px 30px;
    }
    .header h1 {
        font-size: 2.2rem;
    }
    .content {
        padding: 40px 30px;
    }
    .price-big {
        font-size: 2.6rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.9rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .price-big {
        font-size: 2.2rem;
    }
}