* {
    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-notice {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

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

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d62828;
}

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

.hero-text-block {
    flex: 1;
    padding-left: 80px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 16px 38px;
    background-color: #d62828;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-hero:hover {
    background-color: #b91f1f;
}

.hero-image-block {
    flex: 1;
    position: relative;
}

.hero-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.intro-asymmetric {
    display: flex;
    gap: 80px;
    padding: 100px 120px;
    background-color: #f9f9f9;
    align-items: flex-start;
}

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

.intro-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-left p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.intro-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.services-offset-grid {
    padding: 120px 60px;
    background-color: #ffffff;
}

.section-title-left {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 70px;
    margin-left: 60px;
    color: #1a1a1a;
}

.service-card-offset {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.card-1 {
    margin-left: 120px;
}

.card-2 {
    margin-left: 40px;
    flex-direction: row-reverse;
}

.card-3 {
    margin-left: 200px;
}

.card-4 {
    margin-left: 80px;
    flex-direction: row-reverse;
}

.service-card-offset img {
    width: 45%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e8e8e8;
}

.service-content {
    flex: 1;
}

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

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #d62828;
    margin: 25px 0;
}

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

.btn-service:hover {
    background-color: #333333;
}

.form-section-offset {
    padding: 100px 80px;
    background-color: #f4f4f4;
    display: flex;
    gap: 80px;
}

.form-intro {
    flex: 0.8;
    padding-right: 40px;
}

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

.form-intro p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

.production-form {
    flex: 1.2;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

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

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

.service-selected-display {
    background-color: #f9f9f9;
    padding: 18px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #1a1a1a;
}

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

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

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

.trust-section {
    padding: 100px 120px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.trust-item {
    text-align: center;
}

.trust-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #d62828;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 17px;
    color: #cccccc;
}

.footer {
    background-color: #f4f4f4;
    padding: 60px 80px 30px;
}

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

.footer-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.footer-block p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

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

.footer-block ul li a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: #e8e8e8;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-cookie.reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

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

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

    .hero-text-block {
        padding-left: 0;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .services-offset-grid {
        padding: 60px 20px;
    }

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

    .service-card-offset img {
        width: 100%;
    }

    .form-section-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .production-form {
        padding: 30px;
    }

    .trust-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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