* {
    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: #2c2c2c;
    background: #ffffff;
}

.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;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: #2d5f3f;
    color: #fff;
}

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

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

.btn-reject:hover {
    background: #fff;
    color: #000;
}

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

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

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

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

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

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

.ad-label {
    font-size: 11px;
    color: #888;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f5f5f5;
}

.hero-image-wrapper 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: 800px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #2d5f3f;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #3d7f5f;
    transform: translateY(-2px);
}

.intro-story {
    padding: 100px 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.visual-break {
    margin: 80px 0;
}

.dual-image {
    display: flex;
    height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.image-block {
    flex: 1;
    background-color: #e8f5e9;
}

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

.text-overlay-block {
    flex: 1;
    background: #2d5f3f;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.text-overlay-block h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.text-overlay-block p {
    font-size: 20px;
    line-height: 1.6;
}

.benefits-minimal {
    padding: 120px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-minimal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: #2c2c2c;
}

.benefits-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

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

.services-visual {
    padding: 100px 30px;
    background: #fafafa;
}

.services-visual h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.services-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    background: #fff;
    overflow: hidden;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 25px;
}

.btn-select {
    padding: 14px 35px;
    background: #2d5f3f;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #3d7f5f;
    transform: translateY(-2px);
}

.testimonials-inline {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 40px;
    background: #f9f9f9;
    border-left: 4px solid #2d5f3f;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #333;
}

.testimonial span {
    display: block;
    font-weight: 600;
    color: #2d5f3f;
}

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

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

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

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

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

#order-form input,
#order-form select,
#order-form textarea {
    padding: 15px;
    border: none;
    font-size: 16px;
    font-family: inherit;
}

#order-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 18px;
    background: #fff;
    color: #2d5f3f;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.disclaimer-section {
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-block a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #2d5f3f;
}

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
}

.thanks-page h1 {
    font-size: 48px;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.thanks-page p {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
    max-width: 700px;
}

.thanks-page .btn-primary {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 13px;
    }

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

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

    .dual-image {
        flex-direction: column;
        height: auto;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
    }
}