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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    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;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #4a9d5f;
    color: #fff;
}

.btn-accept:hover {
    background: #3d8450;
}

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

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

.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

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

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

.main-nav a:hover {
    color: #4a9d5f;
}

.ad-label {
    font-size: 11px;
    color: #888;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 3px;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-text-offset {
    position: absolute;
    left: 8%;
    top: 25%;
    z-index: 10;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text-offset p {
    font-size: 18px;
    color: #555;
}

.hero-image-float {
    position: absolute;
    right: 5%;
    top: 12%;
    width: 55%;
    height: 75%;
    background: #e0e0e0;
}

.hero-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.intro-block {
    flex: 1.2;
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.intro-visual {
    flex: 0.8;
    background: #e8e8e8;
}

.intro-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.problem-amplify {
    background: #2c2c2c;
    color: #fff;
    padding: 100px 30px;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.problem-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.insight-reveal {
    display: flex;
    min-height: 600px;
}

.insight-left {
    flex: 1;
    background: #d5d5d5;
}

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    flex: 1;
    padding: 80px 60px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.insight-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.services-preview {
    padding: 100px 30px;
    background: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-cards-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: 320px;
    background: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #555;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin: 15px 20px;
    color: #4a9d5f;
}

.service-card .select-service {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 14px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}

.service-card .select-service:hover {
    background: #1a1a1a;
}

.testimonials-inline {
    padding: 80px 30px;
    background: #f5f5f5;
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 35px;
    background: #fff;
    border-left: 4px solid #4a9d5f;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c2c2c;
    line-height: 1.7;
}

.testimonial-block span {
    font-size: 14px;
    color: #666;
}

.form-section {
    padding: 100px 30px;
    background: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

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

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

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

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

.submit-btn:hover {
    background: #3d8450;
}

.disclaimer-section {
    padding: 60px 30px;
    background: #f9f9f9;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 30px 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
}

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

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.thanks-content .service-name {
    font-weight: 700;
    color: #4a9d5f;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.thanks-content a:hover {
    background: #1a1a1a;
}

.page-header {
    padding: 80px 30px 40px;
    background: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
}

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

.page-content ul li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
}

.contact-info {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.contact-block .no-link {
    color: #2c2c2c;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-text-offset {
        left: 5%;
        right: 5%;
        top: 15%;
        padding: 30px;
    }

    .hero-text-offset h1 {
        font-size: 32px;
    }

    .hero-image-float {
        right: 0;
        width: 100%;
        height: 60%;
        top: 40%;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .insight-reveal {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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