* {
    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: rgba(0, 0, 0, 0.95);
    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-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

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

.ad-notice {
    font-size: 11px;
    color: #888;
    font-style: italic;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    background: #1a1a1a;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.cta-hero {
    background: #4a7c59;
    color: #fff;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
}

.cta-hero:hover {
    background: #3d6649;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.narrative-intro {
    padding: 100px 40px;
    background: #fff;
}

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

.narrow-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.visual-story {
    padding: 80px 40px;
    background: #f5f5f5;
}

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

.story-image {
    flex: 1;
    background: #e0e0e0;
}

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

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
}

.services-showcase {
    padding: 100px 40px;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

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

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

.service-card-visual {
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-card-visual.reverse {
    flex-direction: row-reverse;
}

.card-image-large {
    flex: 1.2;
    background: #e8e8e8;
}

.card-image-large img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.card-info {
    flex: 1;
    padding: 20px;
}

.card-info h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.card-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.price-tag {
    font-size: 32px;
    font-weight: 600;
    color: #4a7c59;
    margin-bottom: 25px;
}

.select-service {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trust-building {
    padding: 80px 40px;
    background: #f9f9f9;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-left: 3px solid #4a7c59;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.testimonials-inline {
    padding: 80px 40px;
    background: #2c2c2c;
    color: #fff;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #aaa;
}

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

.form-container {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 4px;
    font-family: inherit;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    background: #4a7c59;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #3d6649;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.final-cta-visual {
    position: relative;
    height: 500px;
    background: #1a1a1a;
}

.cta-image-overlay {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cta-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.cta-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
}

.cta-overlay-content h2 {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-overlay-content p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
}

.cta-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

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

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

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

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

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

    .service-card-visual,
    .service-card-visual.reverse {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}