* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 15px;
}

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

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.nav-asymmetric {
    background-color: #1a252f;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.nav-brand a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-label {
    color: #95a5a6;
    font-size: 12px;
    font-style: italic;
    padding-left: 15px;
    border-left: 1px solid #34495e;
}

.hero-asymmetric {
    min-height: 600px;
    background-color: #ecf0f1;
    padding: 60px 40px;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
    position: relative;
}

.hero-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-offset {
    padding: 80px 40px;
    background-color: #ffffff;
}

.intro-block {
    max-width: 900px;
    margin: 0 auto 0 80px;
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

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

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
    font-weight: 700;
}

.services-header-left p {
    font-size: 18px;
    color: #555;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 30px);
    min-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card.offset-1 {
    margin-top: 0;
}

.service-card.offset-2 {
    margin-top: 40px;
}

.service-card.offset-3 {
    margin-top: -20px;
}

.service-card.offset-4 {
    margin-top: 30px;
}

.service-card.offset-5 {
    margin-top: -10px;
}

.service-card.offset-6 {
    margin-top: 20px;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.service-select-btn {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-select-btn.selected {
    background-color: #27ae60;
}

.form-section-asymmetric {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto 0 120px;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    color: #555;
}

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

.selected-service-display {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #27ae60;
    margin-bottom: 10px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    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: #3498db;
}

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

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

.why-us-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.why-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-text {
    flex: 1;
    padding-right: 40px;
}

.why-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.why-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.why-image {
    flex: 1;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

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

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

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

.footer-bottom p {
    margin-bottom: 10px;
    color: #95a5a6;
    font-size: 13px;
    line-height: 1.6;
}

.disclaimer {
    font-style: italic;
    margin-top: 15px;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content-offset {
        flex-direction: column;
    }

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

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .why-content-split {
        flex-direction: column;
    }

    .form-container-offset {
        margin: 0;
        padding: 30px;
    }

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