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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    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;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 10px;
    border-radius: 4px;
}

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

.hero-content-offset {
    flex: 1;
    padding: 120px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555555;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateX(4px);
}

.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-color: #d4d4d4;
}

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

.intro-offset {
    display: flex;
    align-items: center;
    padding: 100px 80px;
    gap: 60px;
    background: #ffffff;
}

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

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

.intro-block-left p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
}

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

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

.services-grid {
    padding: 120px 80px;
    background: #fafafa;
}

.services-header-offset {
    margin-bottom: 80px;
    padding-left: 120px;
}

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

.services-header-offset p {
    font-size: 20px;
    color: #666666;
}

.service-cards-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

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

.card-offset-2 {
    margin-left: 120px;
}

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

.card-offset-4 {
    margin-left: 180px;
}

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

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    min-width: 300px;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.select-service-btn {
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #2980b9;
}

.contact-form-section {
    padding: 120px 80px;
    background: #2c3e50;
    color: #ffffff;
}

.form-container-asymmetric {
    max-width: 800px;
    margin-left: 160px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
}

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

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

.form-field label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255,255,255,0.15);
}

.submit-btn {
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #2980b9;
}

.visual-break {
    position: relative;
    height: 600px;
    background-color: #cccccc;
}

.visual-content {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.visual-overlay {
    position: absolute;
    bottom: 80px;
    left: 80px;
    max-width: 500px;
    background: rgba(255,255,255,0.95);
    padding: 40px;
}

.visual-quote {
    font-size: 24px;
    line-height: 1.4;
    color: #1a1a1a;
    font-style: italic;
}

.why-choose {
    padding: 120px 80px;
    background: #ffffff;
}

.why-content-offset {
    margin-left: 80px;
}

.why-content-offset h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.why-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.why-item {
    max-width: 600px;
}

.why-item:nth-child(2) {
    margin-left: 200px;
}

.why-item:nth-child(3) {
    margin-left: 100px;
}

.why-item h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.why-item p {
    font-size: 17px;
    color: #666666;
    line-height: 1.7;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #333333;
    padding-top: 30px;
    margin-bottom: 30px;
}

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    background: #f8f9fa;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

.thanks-content p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #555555;
}

.thanks-content .service-highlight {
    font-weight: 700;
    color: #2c3e50;
}

.thanks-content a {
    display: inline-block;
    margin-top: 40px;
    background: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content a:hover {
    background: #34495e;
}

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

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

    .hero-image-wrap {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .service-card {
        flex-direction: column;
    }

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

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

    .why-content-offset {
        margin-left: 0;
    }

    .why-item:nth-child(2),
    .why-item:nth-child(3) {
        margin-left: 0;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 16px;
    }

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

    .services-header-offset {
        padding-left: 0;
    }

    .visual-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 24px;
    }
}