* {
    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: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-offset {
    display: flex;
    min-height: 80vh;
    padding: 60px 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -100px;
    background: #ecf0f1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.intro-staggered {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
    background: #f8f9fa;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.8;
}

.intro-visual-right {
    flex: 1;
    background: #d5dbdb;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.services-irregular {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: #2c3e50;
}

.service-card {
    display: flex;
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-large {
    flex-direction: row;
}

.card-large .service-image {
    flex: 1;
    background: #ecf0f1;
}

.card-large .service-info {
    flex: 1;
    padding: 40px;
}

.card-wide {
    flex-direction: row-reverse;
}

.card-wide .service-info-wide {
    flex: 1;
    padding: 40px;
}

.card-wide .service-image {
    flex: 1;
    background: #ecf0f1;
}

.service-row-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.card-small {
    flex: 1;
    flex-direction: column;
}

.card-small .service-image {
    height: 250px;
    background: #ecf0f1;
}

.card-small .service-info {
    padding: 30px;
}

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

.service-info h3,
.service-info-wide h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p,
.service-info-wide p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-diagonal {
    display: flex;
    background: #34495e;
    min-height: 70vh;
    position: relative;
}

.form-wrapper {
    flex: 1;
    padding: 80px 60px;
    color: #ffffff;
}

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.form-wrapper > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.contact-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #7f8c8d;
    border-radius: 4px;
    font-size: 16px;
    background: #ffffff;
    color: #2c3e50;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 14px 32px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-visual-accent {
    flex: 1;
    background: #2c3e50;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.form-visual-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.trust-diagonal {
    padding: 100px 40px;
    background: #ecf0f1;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.trust-items {
    display: flex;
    gap: 60px;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.trust-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-block {
    flex: 1;
    min-width: 200px;
}

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

.footer-block p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .back-link:hover {
    background: #229954;
}

.content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
}

.content-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
}

.content-page p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-left: 30px;
    margin-bottom: 16px;
}

.content-page li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-page-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
}

.contact-page-content h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #27ae60;
}

.contact-info-block p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        margin-left: 0;
        width: 100%;
    }

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

    .service-row-split {
        flex-direction: column;
    }

    .card-large,
    .card-wide {
        flex-direction: column;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-visual-accent {
        clip-path: none;
        min-height: 300px;
    }

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

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

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