* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.hero-asymmetric {
    position: relative;
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-content-offset {
    width: 55%;
    display: flex;
    align-items: center;
    padding: 0 8% 0 5%;
    z-index: 2;
}

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

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

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-image-float {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 50%;
    height: 80%;
    background-color: #e8eaed;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #2980b9;
}

.intro-staggered {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.intro-visual {
    width: 38%;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-copy {
    width: 62%;
    padding-left: 40px;
}

.intro-copy h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-copy p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

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

.link-inline:hover {
    border-bottom-color: #3498db;
}

.services-grid-asymmetric {
    padding: 100px 5%;
    background-color: #fafbfc;
}

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

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 18px;
    color: #666;
}

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

.service-card-offset:hover {
    transform: translateY(-4px);
}

.card-1 { margin-left: 0; }
.card-2 { margin-left: 8%; }
.card-3 { margin-left: 4%; }
.card-4 { margin-left: 12%; }
.card-5 { margin-left: 6%; }
.card-6 { margin-left: 10%; }

.service-image {
    width: 40%;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.service-card-offset h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    padding: 30px 30px 0 30px;
}

.service-card-offset p {
    padding: 0 30px;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    padding: 0 30px 30px 30px;
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
}

.cta-diagonal {
    padding: 120px 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content-block h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-content-block p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.form-section-offset {
    padding: 100px 5%;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 600px;
    margin-left: 15%;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.form-container-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container-asymmetric p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #666;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #1a252f;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col-main {
    flex: 1;
    min-width: 250px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-col {
    flex: 0.6;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #3498db;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    flex-basis: 100%;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

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

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

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.thanks-container .selected-service {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 17px;
    color: #2c3e50;
}

.contact-page {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 5%;
}

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

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
}

.contact-info strong {
    color: #2c3e50;
}

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

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

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

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

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

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

    .hero-content-offset {
        width: 100%;
        padding: 60px 5%;
    }

    .hero-image-float {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
    }

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

    .intro-visual,
    .intro-copy {
        width: 100%;
        padding-left: 0;
    }

    .service-card-offset {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-image {
        width: 100%;
        height: 250px;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

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