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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #e8912d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --accent: #c67d2e;
    --border-color: #dfe3e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 28px;
}

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 0 6%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.hero-content-left {
    flex: 0 0 48%;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,145,45,0.3);
}

.hero-image-right {
    flex: 0 0 52%;
    background: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-asymmetric {
    display: flex;
    padding: 120px 6% 100px;
    background: var(--bg-white);
    align-items: center;
}

.intro-visual-left {
    flex: 0 0 40%;
    background: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-30px);
}

.intro-visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-block-right {
    flex: 0 0 60%;
    padding-left: 80px;
}

.intro-block-right h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-block-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-cards-offset {
    padding: 100px 6% 120px;
    background: var(--bg-light);
}

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

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.card-service {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.card-offset-1 {
    flex: 0 0 calc(60% - 16px);
}

.card-offset-2 {
    flex: 0 0 calc(40% - 16px);
}

.card-offset-3 {
    flex: 0 0 calc(35% - 16px);
}

.card-offset-4 {
    flex: 0 0 calc(65% - 16px);
}

.card-offset-5 {
    flex: 0 0 calc(48% - 16px);
}

.card-offset-6 {
    flex: 0 0 calc(52% - 16px);
}

.card-service img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

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

.card-service p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 24px 20px;
    line-height: 1.6;
}

.card-service .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 28px;
}

.form-section-floating {
    padding: 140px 6% 120px;
    background: var(--bg-white);
    position: relative;
}

.form-wrapper-asymmetric {
    max-width: 720px;
    margin-left: 8%;
}

.form-wrapper-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-wrapper-asymmetric p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-offset {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #234a5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,95,122,0.3);
}

.trust-diagonal {
    padding: 80px 6%;
    background: linear-gradient(120deg, var(--primary-color) 0%, #3a7a9a 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 34px;
    color: white;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 60px 6% 30px;
}

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

.footer-col-offset-1 {
    flex: 0 0 35%;
}

.footer-col-offset-2 {
    flex: 0 0 25%;
}

.footer-col-offset-3 {
    flex: 0 0 30%;
}

.footer-main h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-main p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-main a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-main a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px 6%;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary-color);
    color: white;
}

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-info {
    color: white;
    text-decoration: underline;
    padding: 12px 20px;
    font-size: 15px;
    transition: color 0.3s;
}

.btn-info:hover {
    color: var(--secondary-color);
}

.page-header {
    padding: 100px 6% 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.page-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.content-section {
    padding: 80px 6%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: var(--text-dark);
}

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

.content-section ul {
    margin: 20px 0 20px 30px;
}

.content-section li {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    padding: 80px 6%;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 6%;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 10px;
}

.thanks-box h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.thanks-box .back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s;
}

.thanks-box .back-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 6%;
    }

    .hero-content-left {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-right {
        flex: 1;
        width: 100%;
        height: 400px;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .intro-visual-left {
        width: 100%;
        height: 350px;
        transform: none;
        margin-bottom: 40px;
    }

    .intro-block-right {
        padding-left: 0;
    }

    .cards-irregular {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        flex: 1 1 100%;
    }

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

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

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

@media (max-width: 768px) {
    .nav-right {
        flex-direction: column;
        gap: 12px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .section-header-left h2 {
        font-size: 32px;
    }
}