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

:root {
    --primary: #2c5f7d;
    --secondary: #7d9fb5;
    --accent: #d4a574;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text);
    line-height: 1.7;
    background: #fff;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.wide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 28px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: 0.3s;
}

.hero-section {
    padding: 80px 0 60px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text);
}

.section {
    padding: 60px 0;
}

.section-tight {
    padding: 40px 0;
}

.section-spacious {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.text-block {
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.8;
}

.text-block p {
    margin-bottom: 20px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 48px 0;
    border-radius: 4px;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

.cta-inline {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    margin: 32px 0;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #234a62;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-size: 16px;
    margin: 32px 0 32px 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.highlight-box {
    background: var(--light);
    padding: 32px;
    margin: 40px 0;
    border-left: 4px solid var(--accent);
}

.highlight-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
}

.service-price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.testimonial {
    background: #fff;
    border-left: 3px solid var(--secondary);
    padding: 28px;
    margin: 32px 0;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

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

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

.form-title {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--dark);
    text-align: center;
}

.form-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
}

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

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

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #234a62;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 16px;
    text-align: center;
    z-index: 99;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    background: var(--accent);
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s;
}

.sticky-cta a:hover {
    background: #c09563;
}

.stats-section {
    display: flex;
    gap: 32px;
    margin: 48px 0;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 32px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-accept:hover {
    background: #234a62;
}

.cookie-reject {
    background: #eee;
    color: var(--text);
}

.cookie-reject:hover {
    background: #ddd;
}

.page-hero {
    padding: 80px 0 40px;
    background: var(--light);
}

.page-title {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: -1.5px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.content-section {
    padding: 60px 0;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-item p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 24px;
}

.thanks-icon {
    font-size: 72px;
    color: var(--primary);
    margin-bottom: 32px;
}

.thanks-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.thanks-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-section {
    padding: 40px 0;
}

.legal-section h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--dark);
}

.legal-section h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--dark);
}

.legal-section p,
.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        border-top: 1px solid var(--border);
        gap: 16px;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .stats-section {
        flex-direction: column;
        gap: 24px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .page-title {
        font-size: 36px;
    }

    .cta-secondary {
        display: block;
        margin: 16px 0;
    }
}
