* {
    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: #fff;
    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-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

.hero-asymmetric {
    background: #f8f9fa;
    padding: 80px 0;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 0 0 45%;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #229954;
    transform: translateY(-2px);
}

.hero-image-block {
    flex: 0 0 55%;
    position: relative;
    margin-top: -40px;
    background: #dfe6e9;
}

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

.intro-offset {
    padding: 100px 0;
    background: #ffffff;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-left {
    flex: 0 0 55%;
}

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.intro-right {
    flex: 0 0 45%;
    margin-left: -40px;
    background: #ecf0f1;
}

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

.services-asymmetric {
    padding: 120px 0;
    background: #f8f9fa;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

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

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

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-large {
    flex: 0 0 calc(66% - 15px);
    flex-direction: row;
}

.service-medium {
    flex: 0 0 calc(50% - 15px);
}

.service-small {
    flex: 0 0 calc(33.333% - 20px);
}

.service-image {
    background: #dfe6e9;
}

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

.service-large .service-image {
    flex: 0 0 50%;
}

.service-large .service-content {
    flex: 0 0 50%;
}

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-section-offset {
    padding: 100px 0;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.form-intro p {
    font-size: 18px;
    color: #666;
}

.selected-service-box {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

.selected-service-box p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 0 0 calc(25% - 30px);
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    max-width: 800px;
    margin: 20px auto 0;
}

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

    .hero-text-block,
    .hero-image-block {
        flex: 1 1 100%;
    }

    .intro-container {
        flex-direction: column;
        gap: 40px;
    }

    .intro-left,
    .intro-right {
        flex: 1 1 100%;
    }

    .service-large,
    .service-medium {
        flex: 0 0 100%;
    }

    .service-small {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 16px;
    }

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

    .service-small {
        flex: 0 0 100%;
    }

    .footer-column {
        flex: 0 0 100%;
    }
}