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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5C3F;
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-items a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #2D5C3F;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
}

.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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.cookie-content a {
    color: #88c2a0;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #1f4029;
}

.btn-reject {
    background-color: #666;
    color: #ffffff;
}

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

.editorial-main {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-center h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.article-body {
    margin-top: 3rem;
}

.intro-section,
.problem-section,
.insight-section,
.solution-section,
.trust-section,
.benefits-section,
.service-reveal,
.form-section,
.disclaimer-section,
.references-section {
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-body h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.article-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2a2a2a;
    font-weight: 600;
}

.inline-image-wrap {
    margin: 3rem 0;
}

.inline-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.75rem;
    object-fit: cover;
    background-color: #e8e8e8;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.quote-block {
    background-color: #f5f5f3;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #2D5C3F;
}

.quote-block blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.quote-block cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.inline-cta {
    display: inline-block;
    color: #2D5C3F;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2D5C3F;
    padding-bottom: 2px;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #1f4029;
}

.two-column-editorial {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.column-text {
    flex: 1;
    min-width: 280px;
}

.column-image {
    flex: 1;
    min-width: 280px;
}

.column-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.highlight-text {
    font-size: 1.15rem;
    padding: 1.5rem;
    background-color: #fff8e1;
    border-left: 3px solid #f4b942;
    margin: 2rem 0;
    line-height: 1.7;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.comparison-item h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #2D5C3F;
}

.comparison-item p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.testimonial-inline {
    margin: 3rem 0;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.testimonial-card strong {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2D5C3F;
    font-weight: bold;
}

.service-reveal {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e5e5;
}

.service-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.service-cards-editorial {
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    position: relative;
}

.service-card.featured {
    border: 2px solid #2D5C3F;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2D5C3F;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', sans-serif;
    z-index: 10;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    margin: 1.5rem 1.5rem 1rem;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #555;
    font-size: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2D5C3F;
    margin: 1.5rem 1.5rem 1rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.select-service-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background-color: #2D5C3F;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1f4029;
}

.form-container {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.form-container h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

.selected-service-display {
    background-color: #f0f8f4;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid #2D5C3F;
}

.selected-service-display p {
    margin: 0;
    color: #2D5C3F;
    font-weight: 600;
}

.editorial-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2D5C3F;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s ease;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.disclaimer-box {
    background-color: #fff8e1;
    padding: 2rem;
    border-left: 4px solid #f4b942;
    margin: 3rem 0;
}

.disclaimer-box h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.references-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.references-list {
    list-style-position: inside;
    margin: 1rem 0;
}

.references-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.references-list a {
    color: #2D5C3F;
    text-decoration: none;
    border-bottom: 1px solid #2D5C3F;
}

.references-list a:hover {
    color: #1f4029;
}

.footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #88c2a0;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #88c2a0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.about-page .page-header-editorial,
.services-page .page-header-editorial,
.contact-page .page-header-editorial {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header-editorial h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

.story-image-top {
    width: 100%;
    margin-bottom: 3rem;
}

.story-image-top img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.inline-quote {
    padding: 2rem;
    background-color: #f0f8f4;
    border-left: 4px solid #2D5C3F;
    margin: 2rem 0;
}

.inline-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: #2a2a2a;
}

.approach-list,
.values-grid .value-item ul,
.directions-list {
    list-style: none;
    margin: 1.5rem 0;
}

.approach-list li {
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D5C3F;
    font-weight: bold;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.value-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #2D5C3F;
    font-size: 1.2rem;
}

.value-item p {
    font-size: 0.95rem;
    color: #555;
}

.cta-section-about,
.services-cta-final {
    margin: 4rem 0;
}

.cta-box {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #2D5C3F;
    color: #ffffff;
    border-radius: 4px;
}

.cta-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.75rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    color: #e8e8e8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2D5C3F;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2D5C3F;
    margin: 1rem 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.price-tag.featured {
    color: #1f4029;
}

.service-inclusions {
    list-style: none;
    margin: 1.5rem 0;
}

.service-inclusions li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1rem;
}

.service-inclusions li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2D5C3F;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 2rem;
    background-color: #2D5C3F;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1f4029;
}

.comparison-help {
    margin: 2rem 0;
}

.comparison-scenario {
    padding: 1.5rem;
    background-color: #f9f9f9;
    margin-bottom: 1rem;
    border-left: 3px solid #2D5C3F;
}

.comparison-scenario h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.comparison-scenario p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.contact-info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.contact-block h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #2D5C3F;
}

.contact-block p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.email-display {
    font-weight: 600;
    color: #2a2a2a;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-image-section {
    margin: 3rem 0;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.help-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.help-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.help-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #2D5C3F;
    font-size: 1.15rem;
}

.help-item p {
    font-size: 0.95rem;
    color: #555;
}

.directions-list {
    list-style: disc;
    list-style-position: inside;
    margin: 1rem 0;
}

.directions-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-cta-section {
    margin: 4rem 0;
}

.thanks-page {
    max-width: 800px;
}

.thanks-container {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
    display: block;
}

.thanks-container h1 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 2rem;
}

.thanks-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.thanks-details {
    text-align: left;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.thanks-details h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.next-steps {
    list-style: none;
    margin: 1rem 0;
}

.next-steps li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2D5C3F;
    font-weight: bold;
}

.selected-service-info {
    background-color: #f0f8f4;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid #2D5C3F;
}

.selected-service-info p {
    margin: 0;
    color: #2D5C3F;
    font-weight: 600;
}

.thanks-contact-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #1f4029;
}

.btn-secondary {
    background-color: #e5e5e5;
    color: #2a2a2a;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.thanks-image {
    margin-top: 2.5rem;
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.legal-container h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2D5C3F;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #2a2a2a;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.7;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #2D5C3F;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1f4029;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookie-table th {
    font-weight: 600;
    color: #2D5C3F;
    font-family: 'Helvetica Neue', sans-serif;
}

.cookie-table td {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-items {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-text-center h1 {
        font-size: 1.75rem;
    }

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

    .article-body h2 {
        font-size: 1.6rem;
    }

    .two-column-editorial {
        flex-direction: column;
    }

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

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

    .service-detail-block {
        flex-direction: column;
    }

    .service-detail-block.reverse {
        flex-direction: column;
    }

    .contact-info-blocks {
        flex-direction: column;
    }

    .help-topics {
        flex-direction: column;
    }

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

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

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}
