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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

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

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.opening-line {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c5f2d;
    line-height: 1.4;
}

.intro-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.visual-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #333;
}

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

.problem-insight {
    padding: 100px 20px;
    background: #ffffff;
}

.container-wide {
    max-width: 900px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.insight-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #444;
}

.services-preview {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c5f2d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 360px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #ddd;
}

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 0;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #234d24;
}

.what-you-get {
    padding: 100px 20px;
    background: #ffffff;
}

.what-you-get h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c5f2d;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials-inline blockquote {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-left: 5px solid #2c5f2d;
    border-radius: 5px;
}

.testimonials-inline blockquote p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonials-inline cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.form-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c5f2d;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234d24;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

footer {
    background: #2c5f2d;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-section p {
    font-size: 16px;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 45, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 9999;
    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: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #ffffff;
    color: #2c5f2d;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    opacity: 0.8;
}

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

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

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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