* {
    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: #2c2c2c;
    background-color: #fafafa;
}

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

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

.nav-brand a {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 40px;
    background-color: #ffffff;
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-right: 80px;
    max-width: 580px;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

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

.cta-primary:hover {
    background-color: #444;
    cursor: pointer;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: -60px;
}

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

.intro-overlap {
    display: flex;
    align-items: flex-start;
    padding: 100px 40px 80px;
    background-color: #f5f5f5;
    position: relative;
}

.intro-card {
    flex: 1;
    background-color: #ffffff;
    padding: 60px;
    max-width: 550px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    margin-right: -80px;
}

.intro-card h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.intro-image-float {
    width: 420px;
    height: 630px;
    object-fit: cover;
    margin-top: 80px;
    background-color: #e0e0e0;
}

.services-asymmetric {
    padding: 120px 40px;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 480px;
    margin-bottom: 70px;
    margin-left: 120px;
}

.section-header-offset h2 {
    font-size: 44px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.services-stagger {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-card-1 {
    margin-left: 0;
}

.service-card-2 {
    margin-left: 100px;
}

.service-card-3 {
    margin-left: 60px;
}

.service-card-4 {
    margin-left: 140px;
}

.service-card-5 {
    margin-left: 30px;
}

.service-card img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e0e0e0;
}

.service-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #444;
}

.btn-select.selected {
    background-color: #00a86b;
}

.form-section-offset {
    display: flex;
    min-height: 700px;
    background-color: #f5f5f5;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
    max-width: 600px;
}

.form-container h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.btn-submit:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e0e0e0;
}

.why-us-scattered {
    padding: 100px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.why-us-scattered h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

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

.why-card {
    background-color: #3a3a3a;
    padding: 50px 40px;
    max-width: 340px;
    position: relative;
}

.why-1 {
    margin-top: 0;
}

.why-2 {
    margin-top: 40px;
}

.why-3 {
    margin-top: 20px;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 70px 40px 40px;
}

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

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 15px;
    color: #999;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #999;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.disclaimer-text {
    font-size: 12px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #444;
}

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

.cookie-link {
    color: #666;
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #2c2c2c;
}

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

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

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

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

    .intro-card {
        margin-right: 0;
        margin-bottom: 30px;
    }

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

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

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

    .section-header-offset {
        margin-left: 0;
    }
}