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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --accent-color: #f4e8d8;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #faf8f5;
    --border-color: #e5e5e5;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background);
}

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

.site-header {
    background-color: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--accent-color);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.hero-section {
    padding: 0;
    margin-top: 0;
}

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--accent-color);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    border-radius: 12px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 20px;
    font-weight: 400;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.card-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.intro-card p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 17px;
}

.visual-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--accent-color);
}

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

.insight-section {
    padding: 80px 0;
    background-color: var(--background);
}

.insight-card-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.main-insight {
    flex: 2;
    min-width: 300px;
    padding: 48px;
    background-color: var(--accent-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.main-insight h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--secondary-color);
}

.main-insight p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

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

.ingredient-card {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    background-color: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.ingredient-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.ingredient-list {
    list-style: none;
}

.ingredient-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-light);
}

.ingredient-list li:last-child {
    border-bottom: none;
}

.story-section {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.story-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--accent-color);
}

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

.story-text-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.story-text-card h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.story-text-card p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--background);
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.testimonial-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--accent-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.benefits-section {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.benefits-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: var(--secondary-color);
}

.benefits-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 36px;
    background-color: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.products-preview-section {
    padding: 80px 0;
    background-color: var(--background);
}

.products-preview-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: var(--secondary-color);
}

.product-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-alt);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 300px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.product-info p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.product-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.product-link:hover {
    background-color: var(--secondary-color);
}

.form-section {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background-color: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 16px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn,
.select-service-btn {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover,
.select-service-btn:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--background);
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.disclaimer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

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

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

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-references {
    margin-bottom: 32px;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.reference-list {
    list-style: none;
    counter-reset: reference-counter;
}

.reference-list li {
    counter-increment: reference-counter;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #cccccc;
}

.reference-list li::before {
    content: "[" counter(reference-counter) "] ";
    color: var(--primary-color);
    font-weight: 600;
}

.reference-list a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-hero {
    padding: 80px 0 60px;
    background-color: var(--accent-color);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

.services-section {
    padding: 80px 0;
    background-color: var(--background);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--background-alt);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.service-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.service-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-composition {
    font-size: 14px;
    padding: 16px;
    background-color: var(--accent-color);
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.about-text-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--background-alt);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-text-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.about-text-card p {
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--accent-color);
}

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

.about-values-section {
    margin-bottom: 80px;
}

.about-values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: var(--accent-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.team-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--accent-color);
}

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

.team-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--background-alt);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.team-text p {
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.process-section {
    margin-bottom: 80px;
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.process-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background-color: var(--background-alt);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.process-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.philosophy-section {
    padding: 48px;
    background-color: var(--accent-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.philosophy-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.philosophy-content p {
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--background-alt);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--accent-color);
    height: 400px;
}

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

.info-cards-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.info-cards-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 240px;
    padding: 28px;
    background-color: var(--accent-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--background-alt);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background-color: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background-color: var(--primary-color);
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    padding: 32px;
    background-color: var(--accent-color);
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

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

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.thanks-next-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.additional-info-section {
    padding: 80px 0;
}

.legal-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background-color: var(--background-alt);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .card-grid,
    .story-grid,
    .about-grid,
    .team-grid,
    .contact-grid {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

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

    .thanks-card {
        padding: 40px 24px;
    }
}