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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
}

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

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

.btn-accept {
    background: #2ecc71;
    color: #ffffff;
}

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

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

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

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.nav-right a:hover {
    color: #2c5f4f;
}

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

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #234b3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 79, 0.3);
}

.hero-image-overlap {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-offset {
    padding: 120px 60px;
    background: #ffffff;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto 0 120px;
}

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

.intro-narrow p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-cards-irregular {
    padding: 100px 60px;
    background: #f8f9fa;
}

.section-title-offset {
    margin-left: 80px;
    margin-bottom: 60px;
}

.section-title-offset h2 {
    font-size: 42px;
    color: #2c3e50;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
}

.card-small {
    flex: 1 1 calc(40% - 15px);
}

.card-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.card-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 24px;
    background: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #234b3e;
    transform: scale(1.02);
}

.cta-floating {
    padding: 80px 60px;
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3d31 100%);
    display: flex;
    justify-content: flex-end;
}

.cta-box {
    max-width: 500px;
    text-align: left;
    margin-right: 120px;
}

.cta-box h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 18px;
}

.cta-box p {
    font-size: 18px;
    color: #d5e8e1;
    margin-bottom: 28px;
}

.btn-cta-alt {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-alt:hover {
    background: #f8f9fa;
    transform: translateX(8px);
}

.form-section-offset {
    padding: 120px 60px;
    background: #ffffff;
}

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

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    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: #2c5f4f;
}

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

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

.trust-section {
    padding: 100px 60px;
    background: #e9ecef;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content img {
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background: #2a2a2a;
    border-radius: 6px;
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.thanks-container {
    max-width: 700px;
    margin: 150px auto;
    text-align: center;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 48px;
    color: #2c5f4f;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-container .selected-service {
    font-weight: 600;
    color: #2c5f4f;
    font-size: 22px;
    margin: 24px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background: #234b3e;
    transform: translateY(-2px);
}

.page-standard {
    margin-top: 80px;
    padding: 80px 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-standard h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-standard h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-standard h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-standard p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.8;
}

.page-standard ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-standard ul li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-page {
    margin-top: 80px;
    padding: 100px 60px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 46px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    color: #5a6c7d;
    margin: 0;
}

.contact-map {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=80');
    background-size: cover;
    background-position: center;
}

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

    .hero-image-overlap {
        clip-path: none;
        min-height: 400px;
    }

    .cards-asymmetric .service-card {
        flex: 1 1 100%;
    }

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

    .trust-content img {
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }
}

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

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

    .intro-narrow {
        margin: 0;
    }

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

    .contact-form {
        padding: 30px;
    }

    .cta-box {
        margin-right: 0;
    }
}