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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5aa0;
}

.hero-asymmetric {
    min-height: 85vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 60px 40px;
    position: relative;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 0 0 45%;
    z-index: 2;
    padding: 40px 0;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #444;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2c5aa0;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #1e4278;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,90,160,0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e0e7ee;
}

.intro-offset {
    padding: 100px 40px;
    background: #ffffff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-left {
    flex: 0 0 40%;
}

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c5aa0;
    line-height: 1.3;
}

.intro-left p {
    font-size: 18px;
    color: #555;
}

.intro-right {
    flex: 1;
    padding-top: 20px;
}

.intro-right p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.8;
}

.link-inline {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2c5aa0;
    transition: all 0.3s;
}

.link-inline:hover {
    color: #1e4278;
    border-bottom-color: #1e4278;
}

.features-staggered {
    padding: 80px 40px;
    background: #f9fafb;
}

.feature-block {
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-left {
    flex-direction: row;
}

.feature-right {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0 0 48%;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #dde3ea;
}

.feature-text {
    flex: 1;
    padding: 20px;
}

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.services-selection {
    padding: 100px 40px;
    background: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 19px;
    color: #666;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 35px;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #2c5aa0;
}

.service-card.selected {
    border-color: #2c5aa0;
    background: #e8f0f9;
}

.service-header {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.select-service-btn {
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #1e4278;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #e8eef5 0%, #f5f7fa 100%);
}

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

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

.form-intro-block h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro-block p {
    font-size: 18px;
    color: #666;
}

.contact-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.selected-service-display {
    background: #e8f0f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #2c5aa0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    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: #2c5aa0;
}

.submit-btn {
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 100px 40px;
    background: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-item {
    flex: 0 1 300px;
    text-align: left;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.trust-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: #252525;
    border-radius: 8px;
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #333;
}

.cookie-content a {
    color: #2c5aa0;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: #2c5aa0;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1e4278;
}

.cookie-reject {
    background: #e0e0e0;
    color: #333;
}

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

@media (max-width: 768px) {
    .hero-content-offset {
        flex-direction: column;
    }

    .hero-text-block {
        flex: 1;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .intro-container {
        flex-direction: column;
        gap: 40px;
    }

    .feature-block {
        flex-direction: column !important;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .trust-points {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}