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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.cookie-banner.active {
    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;
    margin: 0;
}

.cookie-content a {
    color: #7ec8e3;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.header-asymmetric {
    position: relative;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    position: relative;
}

.logo-offset {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-split {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-split a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    display: flex;
    min-height: 600px;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
}

.hero-title-large {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52,152,219,0.1) 0%, rgba(255,255,255,0) 100%);
}

.intro-irregular {
    padding: 100px 60px;
    display: flex;
    gap: 60px;
    background-color: #f8f9fa;
}

.intro-block-left {
    flex: 1;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 18px;
    color: #546e7a;
}

.intro-block-right-offset {
    flex: 1;
    padding-left: 40px;
    margin-top: 60px;
}

.intro-block-right-offset p {
    font-size: 18px;
    color: #546e7a;
}

.services-cards-staggered {
    padding: 100px 60px;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
    margin-left: 40px;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 320px;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-offset-4 {
    margin-top: 60px;
}

.card-offset-5 {
    margin-top: 30px;
}

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.card-content p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section-diagonal {
    padding: 100px 60px;
    background-color: #ecf0f1;
    position: relative;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    max-width: 540px;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a252f;
}

.form-intro {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 32px;
}

.contact-form-asymmetric {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-image-overlap {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

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

.trust-block-irregular {
    padding: 100px 60px;
    background-color: #ffffff;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-content-left {
    flex: 1;
}

.trust-content-left h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a252f;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 16px 0;
    font-size: 18px;
    color: #546e7a;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 32px;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.trust-image-offset {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -60px;
}

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

.footer-asymmetric {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 60px 20px;
}

.footer-content-staggered {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-block-1 {
    margin-top: 0;
}

.footer-block-2 {
    margin-top: 20px;
}

.footer-block-3 {
    margin-top: 40px;
}

.footer-block-4 {
    margin-top: 10px;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

.footer-block p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 8px;
}

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

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

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

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

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

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #7f8c8d;
    font-size: 14px;
}

.contact-page {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-page .subtitle {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 60px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 16px;
    color: #7ec8e3;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.about-page {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-content {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-text p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.services-page {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.services-page .subtitle {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.legal-page {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 8px;
    line-height: 1.6;
}

.thanks-page {
    padding: 120px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-page h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-page .service-reference {
    font-size: 18px;
    color: #2c3e50;
    margin: 32px 0;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 6px;
    font-weight: 500;
}

.thanks-page a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.thanks-page a:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
    }

    .hero-content-offset {
        max-width: 100%;
        padding: 40px 24px;
    }

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

    .intro-irregular {
        flex-direction: column;
        padding: 60px 24px;
    }

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

    .services-cards-staggered {
        padding: 60px 24px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 32px;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-top: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
        padding: 60px 24px;
    }

    .form-image-overlap {
        width: 100%;
        min-height: 300px;
    }

    .trust-block-irregular {
        flex-direction: column;
        padding: 60px 24px;
    }

    .trust-image-offset {
        margin-top: 0;
        width: 100%;
    }

    .nav-floating {
        padding: 16px 24px;
    }

    .nav-split {
        gap: 16px;
        font-size: 14px;
    }

    .footer-content-staggered {
        flex-direction: column;
    }

    .footer-block-1,
    .footer-block-2,
    .footer-block-3,
    .footer-block-4 {
        margin-top: 0;
    }

    .contact-page,
    .about-page,
    .services-page,
    .legal-page,
    .thanks-page {
        padding: 60px 24px;
    }

    .about-content {
        flex-direction: column;
    }
}