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

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

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

.content-centered {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.content-wide {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.brand-mark {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.nav-main a:hover {
    color: #557b5d;
}

.ad-notice {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #95a5a6;
    border: 1px solid #e0e0e0;
    padding: 4px 10px;
    border-radius: 3px;
}

.hero-immersive {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 60px 30px;
}

.hero-content h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-narrow {
    padding: 100px 30px;
    background: #f9fafb;
}

.section-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-narrow p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #555;
}

.section-split {
    padding: 80px 30px;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8f4e8;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.section-dark h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.section-dark p {
    font-size: 19px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.section-insights {
    padding: 100px 30px;
    background: #f4f7f6;
}

.section-insights h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.insight-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

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

.citation {
    color: #557b5d;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.testimonials-flow {
    padding: 100px 30px;
    background: #f9fafb;
}

.testimonial-large {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-large cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
}

.section-benefits-stacked {
    padding: 100px 30px;
}

.section-benefits-stacked h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.benefit-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
}

.benefit-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.benefit-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.section-collections {
    padding: 100px 30px;
    background: #f9fafb;
}

.section-collections h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #555;
    margin-bottom: 60px;
}

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

.collection-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.collection-card.featured {
    border: 2px solid #557b5d;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #557b5d;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.card-image {
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.price-detail {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #557b5d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

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

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #f4f7f6;
}

.btn-submit {
    padding: 16px;
    background: #557b5d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.section-guarantee {
    padding: 80px 30px;
    background: #f4f7f6;
}

.section-guarantee h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.section-guarantee p {
    font-size: 18px;
    color: #555;
    text-align: center;
    line-height: 1.7;
}

.section-references {
    padding: 60px 30px;
    background: #ffffff;
}

.section-references h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.references-list {
    list-style-position: inside;
    line-height: 1.8;
    font-size: 15px;
    color: #555;
}

.references-list a {
    color: #557b5d;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-main {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 20px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 25px 30px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cookie-accept {
    background: #557b5d;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #466852;
    transform: translateY(-2px);
}

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

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

.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 60px 30px;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
}

.section-about-intro {
    padding: 100px 30px;
}

.section-about-intro h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.section-about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.section-values {
    padding: 100px 30px;
    background: #f4f7f6;
}

.section-values h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.section-process {
    padding: 100px 30px;
}

.section-process h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.process-step {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.step-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f4f7f6;
}

.step-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.step-text {
    flex: 1;
}

.step-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.step-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.section-team {
    padding: 80px 30px;
    background: #f9fafb;
}

.section-team h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.section-team p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 30px;
    background: #557b5d;
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #557b5d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    text-align: center;
}

.services-intro p {
    font-size: 18px;
    color: #555;
    text-align: center;
    line-height: 1.7;
}

.section-collections-full {
    padding: 60px 30px 100px;
}

.collections-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-composition {
    font-size: 15px;
    margin-bottom: 15px;
    color: #7f8c8d;
}

.service-description {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.service-benefits {
    font-size: 16px;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.service-price {
    font-size: 30px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-form-services {
    padding: 80px 30px;
    background: #f4f7f6;
}

.contact-main {
    padding: 100px 30px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.contact-info > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-note {
    margin-top: 15px;
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f4f7f6;
}

.contact-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.section-map-placeholder {
    padding: 60px 30px;
    background: #f9fafb;
}

.map-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.map-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.map-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 30px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #557b5d;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

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

.order-summary {
    background: #f4f7f6;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.order-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.process-steps {
    list-style-position: inside;
    line-height: 2;
    font-size: 16px;
    color: #555;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #557b5d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #557b5d;
    border: 2px solid #557b5d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background: #557b5d;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-page {
    padding: 100px 30px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.legal-content a {
    color: #557b5d;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-main {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

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

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

    .split-content,
    .benefit-block,
    .process-step,
    .contact-layout,
    .service-item {
        flex-direction: column;
    }

    .benefit-block.reverse,
    .process-step.reverse,
    .service-item.reverse {
        flex-direction: column;
    }

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

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

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

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

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

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