* {
    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;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

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

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

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

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

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.ad-disclosure {
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    text-shadow: none;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2d5016;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.story-intro {
    padding: 120px 20px;
    background: #f8f9fa;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
}

.narrow-content p {
    margin-bottom: 25px;
}

.image-text-overlay {
    position: relative;
    min-height: 700px;
}

.overlay-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

.overlay-container img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.overlay-text-block {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.overlay-text-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.overlay-text-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.insight-reveal {
    padding: 100px 20px;
    background: #fff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.insight-card {
    flex: 1;
    min-width: 300px;
}

.insight-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.testimonial-visual {
    position: relative;
    min-height: 600px;
}

.testimonial-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c5f2d;
}

.testimonial-overlay img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7);
}

.testimonial-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.testimonial-content blockquote {
    font-size: 28px;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-content cite {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.benefits-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #27ae60;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.service-reveal {
    padding: 100px 20px;
    background: #fff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    padding: 25px 25px 15px;
    color: #2c3e50;
}

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    padding: 10px 25px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.form-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #fff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.selected-service-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    text-align: center;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.final-image {
    height: 700px;
    overflow: hidden;
    background-color: #34495e;
}

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

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column p {
    margin-bottom: 10px;
    color: #ccc;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

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

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

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

    .hero-overlay p {
        font-size: 18px;
    }

    .overlay-text-block {
        position: static;
        transform: none;
        margin: 20px;
        max-width: none;
    }

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

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

    .testimonial-content blockquote {
        font-size: 20px;
    }

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