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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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: 300px;
}

.cookie-content a {
    color: #87c4a3;
    text-decoration: underline;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d5a3d;
}

.nav-ad-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

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

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

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

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

.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) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 900px;
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.story-section {
    max-width: 750px;
    margin: 80px auto;
    padding: 0 30px;
}

.story-intro {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.story-image-inline {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.story-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.insight-visual {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.insight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.insight-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.trust-section {
    padding: 100px 30px;
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.trust-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-flow {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.8;
}

.products-reveal {
    padding: 100px 30px;
}

.products-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.products-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.products-header p {
    font-size: 20px;
    color: #666;
}

.products-visual-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.product-card {
    flex: 1 1 calc(50% - 25px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    width: 100%;
    height: 350px;
    background-color: #e5e5e5;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-info {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 20px 0;
}

.btn-select {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 30px;
    background-color: #f5f5f5;
}

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

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e9e9e9;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 30px;
    background-color: #fff9e6;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #87c4a3;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

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

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

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

.footer-column ul li a:hover {
    color: #87c4a3;
}

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

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

.about-hero {
    margin-top: 70px;
    padding: 100px 30px;
    background: linear-gradient(135deg, #2d5a3d 0%, #1a3827 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 22px;
    color: #87c4a3;
    font-weight: 300;
}

.about-story {
    padding: 100px 30px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-image-section {
    flex: 1;
    background-color: #e5e5e5;
}

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

.about-text-section {
    flex: 1;
}

.about-text-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.philosophy-section {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

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

.philosophy-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.values-visual {
    padding: 100px 30px;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.values-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.values-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.services-hero {
    margin-top: 70px;
    padding: 80px 30px;
    background: linear-gradient(135deg, #2d5a3d 0%, #1a3827 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 15px;
}

.services-intro {
    font-size: 20px;
    color: #87c4a3;
}

.services-catalog {
    padding: 80px 30px;
}

.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-detail-card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.product-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.product-visual {
    flex: 1;
    background-color: #e5e5e5;
}

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

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.product-desc {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    font-size: 15px;
    line-height: 2;
    color: #555;
    padding-left: 25px;
    position: relative;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.price-tag {
    font-size: 38px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 25px;
}

.btn-order {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-order:hover {
    background-color: #3a7050;
    transform: translateY(-2px);
}

.contact-hero {
    margin-top: 70px;
    padding: 80px 30px;
    background: linear-gradient(135deg, #2d5a3d 0%, #1a3827 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 20px;
    color: #87c4a3;
}

.contact-info-section {
    padding: 100px 30px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5a3d;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-visual {
    flex: 1;
    background-color: #e5e5e5;
}

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

.location-section {
    padding: 80px 30px;
    background-color: #f9f9f9;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.location-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.thanks-section {
    margin-top: 70px;
    padding: 100px 30px;
    min-height: 70vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #3a3a3a;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    font-size: 16px;
    line-height: 2.2;
    color: #555;
    padding-left: 30px;
    position: relative;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.legal-section {
    margin-top: 70px;
    padding: 80px 30px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-update {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .nav-links {
        flex-basis: 100%;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .insight-grid,
    .about-container,
    .values-content,
    .contact-container {
        flex-direction: column;
    }

    .product-detail-card,
    .product-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .product-card {
        min-width: 100%;
    }

    .testimonials-flow {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}