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

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

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

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

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

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

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 40px 80px 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    flex: 1;
    max-width: 520px;
    padding-right: 60px;
    position: relative;
    z-index: 10;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

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

.intro-text-block {
    flex: 1;
    max-width: 560px;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.75;
}

.intro-image-float {
    flex: 1;
    position: relative;
    margin-top: 40px;
}

.intro-image-float img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #f8f9fa;
}

.services-cards-stagger {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: #1a202c;
    font-weight: 700;
}

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

.service-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-left {
    margin-left: 40px;
    margin-right: 120px;
}

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

.service-image {
    flex: 1;
    min-width: 320px;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e9ecef;
}

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

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-select-service:active {
    transform: translateY(0);
}

.form-section-asymmetric {
    display: flex;
    padding: 120px 60px 120px 100px;
    gap: 100px;
    background-color: #ffffff;
    align-items: flex-start;
}

.form-intro-block {
    flex: 1;
    max-width: 400px;
    position: sticky;
    top: 100px;
}

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

.form-intro-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-form-offset {
    flex: 1;
    max-width: 580px;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.selected-service-display {
    margin-bottom: 28px;
    padding: 20px;
    background-color: #e8f4f8;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.selected-service-display p {
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
}

.selected-service-display strong {
    color: #1a202c;
}

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

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

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.trust-section-overlap {
    padding: 100px 80px 100px 160px;
    background: linear-gradient(120deg, #2c3e50 0%, #34495e 100%);
    margin: 80px 40px;
    border-radius: 12px;
}

.trust-content {
    max-width: 700px;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    color: #ecf0f1;
    line-height: 1.75;
}

.footer-asymmetric {
    background-color: #1a202c;
    padding: 80px 60px 40px 60px;
    color: #cbd5e0;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #2d3748;
    font-size: 14px;
    color: #718096;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-box {
    max-width: 600px;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-service-info {
    margin: 32px 0;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.thanks-service-info p {
    margin: 8px 0;
    font-size: 16px;
}

.thanks-service-info strong {
    color: #1a202c;
}

.btn-home {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-home:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a202c;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.75;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-container ul li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.about-hero {
    padding: 100px 60px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.about-section p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.75;
}

.services-page-header {
    padding: 100px 60px 60px 60px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
}

.services-page-header h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 800;
}

.services-page-header p {
    font-size: 20px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

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

.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.contact-page-header p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-block p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-info-block .email-text {
    color: #3498db;
    font-weight: 600;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content-offset {
        padding-right: 0;
        max-width: 100%;
    }

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

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 40px;
        width: 100%;
    }

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

    .section-title-offset {
        margin-left: 0;
        font-size: 32px;
    }

    .service-card {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .card-left,
    .card-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-image {
        min-width: 100%;
    }

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

    .form-intro-block {
        position: static;
        max-width: 100%;
    }

    .contact-form-offset {
        max-width: 100%;
    }

    .trust-section-overlap {
        padding: 60px 40px;
        margin: 40px 20px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

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