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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #f4a261;
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.hero-asymmetric {
    margin-top: 100px;
    display: flex;
    min-height: 600px;
    background: var(--bg-light);
    position: relative;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 520px;
    margin-left: 40px;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-visual-offset {
    flex: 1;
    position: relative;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-visual-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-diagonal {
    padding: 80px 20px;
    background: var(--bg-white);
    position: relative;
}

.intro-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.intro-diagonal h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.intro-diagonal p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-offset {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-left p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 320px;
}

.service-card-medium {
    flex: 1 1 calc(48% - 15px);
    min-width: 320px;
}

.service-card-small {
    flex: 1 1 calc(38% - 15px);
    min-width: 300px;
}

.service-image {
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select-service {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.form-section-embedded {
    padding: 80px 20px;
    background: var(--bg-white);
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #e89350;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.trust-section h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1 1 280px;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-item p {
    color: var(--text-light);
}

.disclaimer-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.disclaimer-text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand-block {
    flex: 1 1 250px;
}

.footer-brand-block h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.footer-brand-block p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links-block,
.footer-legal-block,
.footer-contact-block {
    flex: 1 1 180px;
}

.footer-links-block h4,
.footer-legal-block h4,
.footer-contact-block h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.footer-links-block ul,
.footer-legal-block ul {
    list-style: none;
}

.footer-links-block a,
.footer-legal-block a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}

.footer-links-block a:hover,
.footer-legal-block a:hover {
    color: var(--accent-color);
}

.footer-contact-block p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-email-text {
    font-style: normal;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.98);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-cookie:hover {
    background: #e89350;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-header {
    margin-top: 120px;
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.page-content {
    padding: 80px 20px;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
    color: var(--text-light);
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info-block {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nav-floating {
        top: 10px;
        width: 98%;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .nav-ad-label {
        order: 3;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 4;
        gap: 15px;
        padding-top: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        margin-top: 80px;
    }

    .hero-visual-offset {
        clip-path: none;
        height: 300px;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .services-staggered {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .trust-grid {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

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

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

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

    .page-header h1 {
        font-size: 2rem;
    }
}