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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #7f8c8d;
    --color-accent: #3498db;
    --color-background: #ffffff;
    --color-text: #2c3e50;
    --color-light: #ecf0f1;
    --color-border: #bdc3c7;
    --color-success: #27ae60;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-background);
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header-transparent,
.header-solid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background-color 0.3s ease;
}

.header-transparent {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-solid {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-heading);
}

.nav-disclaimer {
    flex-grow: 1;
    text-align: center;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    background-color: var(--color-light);
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

.hero-visual-full {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #95a5a6;
}

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

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

.hero-title-large {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.story-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--color-primary);
}

.story-narrow h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.story-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image {
    margin: 3rem 0;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.visual-break {
    padding: 0;
}

.split-visual {
    display: flex;
    flex-wrap: wrap;
}

.split-image,
.split-text {
    flex: 1 1 50%;
    min-width: 320px;
}

.split-image {
    background-color: #d5d5d5;
    min-height: 500px;
}

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

.split-text {
    padding: 5rem 3rem;
    background-color: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.testimonials-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 300px;
    max-width: 400px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
}

.testimonial-card.offset {
    margin-top: 3rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.reveal-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-block {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-block.large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 300px;
}

.benefit-block.small {
    flex: 1 1 calc(40% - 1rem);
    min-width: 280px;
}

.benefit-block img {
    width: 100%;
    height: 250px;
    background-color: #d0d0d0;
}

.benefit-block h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.benefit-block p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

.services-pricing {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.pricing-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 4rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: #fafafa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border-color: var(--color-accent);
    background-color: #ffffff;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.price-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #555;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.form-intro {
    margin-bottom: 2rem;
    color: #666;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #555;
}

.btn-submit {
    padding: 1rem;
    background-color: var(--color-success);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef9e7;
    border-top: 2px solid #f4d03f;
    border-bottom: 2px solid #f4d03f;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #7d6608;
    line-height: 1.7;
    text-align: center;
}

.footer-main {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5d6e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-outline {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: var(--color-success);
    color: #ffffff;
}

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

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

.btn-cookie-outline:hover {
    background-color: #ffffff;
    color: var(--color-primary);
}

.about-hero,
.services-header,
.contact-hero {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    background-color: #f5f5f5;
    text-align: center;
}

.about-hero h1,
.services-header h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.intro-text,
.services-intro,
.contact-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 2rem;
}

.story-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-layout.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1 1 400px;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.story-image-block {
    flex: 1 1 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-block img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

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

.process-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.process-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.collection-detail {
    padding: 4rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.collection-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.collection-layout.reverse {
    flex-direction: row-reverse;
}

.collection-image {
    flex: 1 1 450px;
    background-color: #d5d5d5;
    border-radius: 8px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.collection-info {
    flex: 1 1 450px;
    position: relative;
}

.badge-featured {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.collection-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.collection-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.collection-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.collection-features {
    list-style: none;
    margin-bottom: 2rem;
}

.collection-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
    color: #555;
}

.collection-features li:last-child {
    border-bottom: none;
}

.btn-collection {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-collection:hover {
    background-color: #2980b9;
    text-decoration: none;
}

.care-instructions {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.care-instructions h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.care-instructions p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.care-list {
    list-style-position: inside;
    font-size: 1rem;
    color: #555;
}

.care-list li {
    padding: 0.5rem 0;
}

.contact-content {
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1 1 300px;
}

.contact-info-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.contact-detail {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-map-placeholder {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

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

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.map-info p {
    font-size: 1.1rem;
    color: #555;
}

.faq-section {
    padding: 4rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    margin-top: 80px;
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-success);
    font-family: var(--font-heading);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.order-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.order-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.order-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.steps-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
}

.legal-content {
    margin-top: 80px;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    color: var(--color-primary);
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .split-visual {
        flex-direction: column;
    }

    .split-image,
    .split-text {
        min-width: 100%;
    }

    .testimonial-card.offset {
        margin-top: 0;
    }

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

    .benefit-block.large,
    .benefit-block.small {
        flex: 1 1 100%;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        max-width: 100%;
    }

    .story-layout,
    .collection-layout {
        flex-direction: column;
    }

    .story-layout.reverse,
    .collection-layout.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-outline {
        width: 100%;
    }

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

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