* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2332;
    --secondary-color: #8b9eb7;
    --accent-color: #d4a574;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-light: #e1e8ed;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.narrow-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background: var(--white);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

.ad-notice {
    font-size: 11px;
    color: var(--secondary-color);
    padding: 4px 12px;
    border: 1px solid var(--border-light);
    border-radius: 3px;
}

.hero-section {
    padding: 160px 0 200px;
    background: var(--light-bg);
    text-align: center;
}

.hero-section h1 {
    font-size: 68px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 22px;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 60px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.section {
    padding: 120px 0;
}

.section-minimal {
    padding: 180px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 90px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
}

.service-item:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}

.service-item h3 {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 300;
}

.service-item p {
    font-size: 17px;
    color: var(--secondary-color);
    line-height: 1.8;
    max-width: 600px;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 80px;
    background-color: var(--light-bg);
}

.about-content p {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 35px;
    color: var(--text-color);
    font-weight: 300;
}

.form-section {
    background: var(--light-bg);
    padding: 140px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    background: var(--white);
    font-size: 16px;
    font-family: inherit;
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.submit-btn:hover {
    background: var(--accent-color);
}

.contact-info {
    max-width: 600px;
    margin: 80px auto 0;
    text-align: center;
}

.contact-item {
    margin-bottom: 45px;
}

.contact-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.contact-item p {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 300;
}

footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
    color: var(--text-color);
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: 1px solid var(--border-light);
    background: var(--white);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cookie-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 50px 0 25px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light-bg);
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .container,
    .narrow-container {
        padding: 0 20px;
    }

    nav ul {
        gap: 20px;
    }

    .hero-section h1 {
        font-size: 42px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .section {
        padding: 80px 0;
    }

    .section-minimal {
        padding: 100px 0;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .service-item h3 {
        font-size: 26px;
    }

    .service-price {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
