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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 10px;
}

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

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

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

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

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: #fff;
}

.btn-cookie-reject:hover {
    background-color: #6c7a7b;
}

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5f4e;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #27ae60;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-intro {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-wrapper 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;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    text-align: center;
    max-width: 900px;
    line-height: 1.3;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.narrative-intro .lead-text {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2c5f4e;
}

.narrative-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.problem-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.flex-row-alternate {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.text-block {
    flex: 1;
    min-width: 300px;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f4e;
}

.text-block p {
    font-size: 17px;
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    min-width: 300px;
    background-color: #d5e8df;
    border-radius: 8px;
    overflow: hidden;
}

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

.ref-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
}

.ref-link:hover {
    text-decoration: underline;
}

.insight-section {
    background-color: #fff;
}

.insight-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f4e;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-inline {
    background-color: #2c5f4e;
    color: #fff;
    padding: 60px 0;
}

.testimonial-inline blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.benefits-reveal {
    background-color: #fff;
}

.benefits-reveal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f4e;
}

.benefit-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    background-color: #d5e8df;
}

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

.benefit-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #2c5f4e;
}

.benefit-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.trust-section {
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f4e;
}

.trust-section p {
    font-size: 17px;
    margin-bottom: 20px;
}

.services-pricing {
    background-color: #fff;
}

.services-pricing h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f4e;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-text {
    flex: 1;
    min-width: 280px;
}

.service-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f4e;
}

.service-text p {
    font-size: 16px;
    color: #555;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
}

.btn-select {
    padding: 12px 24px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f4e;
}

.form-section > .content-narrow > p {
    font-size: 17px;
    margin-bottom: 30px;
}

.booking-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

.final-cta {
    background-color: #2c5f4e;
    color: #fff;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-scroll {
    display: inline-block;
    padding: 15px 35px;
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-scroll:hover {
    background-color: #229954;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.references li a {
    font-size: 13px;
    word-break: break-all;
}

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

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .flex-row-alternate {
        flex-direction: column;
    }

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

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        align-items: flex-start;
    }
}
