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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px 24px 40px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    font-size: 26px;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

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

.hero-content-left {
    flex: 1;
    max-width: 560px;
    padding-left: 60px;
}

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

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background-color: #e0e7ee;
}

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

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

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

.intro-diagonal {
    padding: 100px 40px 100px 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.intro-text {
    max-width: 920px;
    transform: skewY(2deg);
}

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

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

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

.services-header-offset {
    max-width: 700px;
    margin-bottom: 80px;
    margin-left: 80px;
}

.services-header-offset h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.service-card-large {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: 40px;
}

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

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

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

.service-card-large h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card-large p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.btn-service-select {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.service-card-small-group {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: 80px;
}

.service-card-compact {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.service-card-compact img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 24px;
    background-color: #d5dce4;
}

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

.service-card-compact p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-card-compact .service-price {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card-offset-right {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    max-width: 1300px;
    margin-left: 40px;
}

.service-info-left {
    flex: 1;
    padding-right: 40px;
}

.service-info-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.service-image-right {
    flex: 1;
    background-color: #e8eef5;
}

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

.service-card-full {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: 80px;
}

.service-card-full h3 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card-full p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
}

.service-card-full .service-price {
    color: #ffffff;
    font-size: 30px;
}

.service-card-full .btn-service-select {
    background-color: #ffffff;
    color: #0066cc;
}

.service-card-full .btn-service-select:hover {
    background-color: #f0f4f8;
    color: #0052a3;
}

.service-card-minimal {
    max-width: 800px;
    margin-left: 120px;
    padding: 40px 0;
    border-top: 3px solid #0066cc;
}

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

.service-card-minimal p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.service-card-minimal .service-price {
    font-size: 24px;
    margin-bottom: 20px;
}

.cta-overlap {
    position: relative;
    height: 600px;
    margin: 120px 40px;
    overflow: hidden;
    border-radius: 12px;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.cta-content-box {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.97);
    padding: 60px;
    max-width: 540px;
    border-radius: 8px;
}

.cta-content-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.cta-content-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

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

.cta-secondary:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
}

.form-section-offset {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin-left: 120px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-container > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 36px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

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

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

.footer-main {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-col-offset {
    flex: 1.5;
    padding-left: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-offset h4,
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col-offset p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #0066cc;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #aaaaaa;
}

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

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-left {
        padding-left: 20px;
    }

    .hero-image-right {
        margin-top: 20px;
    }

    .service-card-large,
    .service-card-offset-right {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
    }

    .service-card-small-group {
        flex-direction: column;
        margin-left: 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .services-header-offset {
        margin-left: 20px;
    }

    .service-card-minimal {
        margin-left: 20px;
    }

    .cta-content-box {
        left: 20px;
        right: 20px;
        padding: 40px 30px;
    }

    .form-container {
        padding: 40px 30px;
    }
}