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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-btn.reject {
    background-color: #666;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.7rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #2c5f2d;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

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

.hero-overlay h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.story-flow {
    background-color: white;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-text-narrow {
    margin-bottom: 3rem;
}

.story-text-narrow h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-text-narrow h3 {
    font-size: 1.7rem;
    color: #3d3d3d;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.story-text-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.visual-break {
    margin: 4rem 0;
    background-color: #f5f5f5;
}

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

.inline-cta-box {
    background-color: #e8f5e9;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    border-left: 4px solid #4CAF50;
}

.inline-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.inline-link {
    display: inline-block;
    color: #2c5f2d;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid #4CAF50;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #4CAF50;
    border-bottom-color: #2c5f2d;
}

.visual-grid-asymmetric {
    display: flex;
    gap: 1.5rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.grid-large {
    flex: 1.5;
    min-width: 300px;
    background-color: #f0f0f0;
}

.grid-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-small-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
}

.grid-small-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f5f5f5;
}

.trust-elements {
    background-color: #fafafa;
    padding: 5rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-column {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.trust-column h4 {
    font-size: 1.4rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.trust-column p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.testimonials-inline {
    background-color: white;
    padding: 5rem 2rem;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 3px solid #4CAF50;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: #3d3d3d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.benefits-reveal {
    background-color: #fafafa;
    padding: 5rem 2rem;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-visual-left {
    flex: 1;
    min-width: 350px;
    background-color: #e8f5e9;
}

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

.benefit-content-right {
    flex: 1;
    min-width: 350px;
}

.benefit-content-right h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.3rem;
}

.services-pricing {
    background-color: white;
    padding: 5rem 2rem;
}

.services-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header-center h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.services-header-center p {
    font-size: 1.15rem;
    color: #555;
}

.services-grid-cards {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: #2c5f2d;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 1rem 1.5rem;
}

.select-service-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.order-form-container {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.form-wrapper h3 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.selected-service-display {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #2c5f2d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-section {
    background-color: #e8f5e9;
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: white;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5f2d;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: white;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

.footer-column ul li a:hover {
    color: #4CAF50;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #252525;
    border-radius: 5px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

    .benefits-container {
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}