:root {
    --primary: #4a7c6f;
    --primary-dark: #3a6259;
    --secondary: #d4a373;
    --accent: #e9c46a;
    --text: #2d3436;
    --text-light: #636e72;
    --bg-light: #faf9f7;
    --bg-cream: #f5f0e8;
    --bg-sage: #e8efe9;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 4px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.nav-cta::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-sage) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-sage);
}

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

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-badge strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
}

.hero-badge span {
    font-size: 14px;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

.btn-accent:hover {
    background: #c49363;
    color: var(--white);
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-sage {
    background: var(--bg-sage);
}

.section-cream {
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.problem-section {
    padding: 100px 0;
    background: var(--text);
    color: var(--white);
}

.problem-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--white);
}

.problem-text p {
    font-size: 17px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
}

.problem-list {
    list-style: none;
    margin-top: 32px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
}

.problem-list li::before {
    content: '✗';
    color: var(--secondary);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.problem-image {
    flex: 1;
}

.problem-image-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--text-light);
}

.problem-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    opacity: 0.85;
}

.solution-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-sage) 100%);
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.solution-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

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

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

.story-section {
    padding: 100px 0;
}

.story-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 28px;
}

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

.story-quote {
    background: var(--bg-cream);
    padding: 32px;
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--text);
}

.story-sidebar {
    flex: 0.8;
    position: sticky;
    top: 120px;
}

.story-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.story-card-image {
    height: 200px;
    background-color: var(--bg-sage);
}

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

.story-card-content {
    padding: 28px;
}

.story-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

.benefits-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.benefit-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 15px;
}

.testimonial-section {
    padding: 100px 0;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 72px;
    color: var(--bg-sage);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info strong {
    display: block;
    font-size: 16px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-color: var(--bg-sage);
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-light);
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.price-label {
    font-size: 13px;
    color: var(--text-light);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    padding: 18px 40px;
}

.cta-section .btn:hover {
    background: var(--accent);
    color: var(--text);
}

.form-section {
    padding: 100px 0;
    background: var(--bg-sage);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-features {
    list-style: none;
}

.form-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
}

.form-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.about-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg-cream);
}

.about-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-main {
    flex: 1.5;
}

.about-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

.about-image-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--bg-sage);
}

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

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.stat-item {
    flex: 1;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 32px;
    color: var(--primary);
}

.stat-item span {
    font-size: 14px;
    color: var(--text-light);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

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

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

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    margin-bottom: 4px;
}

.contact-text span {
    color: var(--text-light);
    font-size: 15px;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

footer {
    background: var(--text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.disclaimer {
    background: var(--bg-light);
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.references-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

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

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.references-list a {
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: var(--bg-light);
    color: var(--text);
}

.cookie-reject:hover {
    background: var(--bg-cream);
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-sage) 100%);
    padding: 40px 24px;
}

.thanks-content {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 600px;
}

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.legal-page {
    padding-top: 140px;
    padding-bottom: 80px;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--primary);
}

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

.legal-content ul {
    margin: 16px 0 24px 24px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
}

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

.service-detail-card {
    display: flex;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-detail-image {
    flex: 0 0 40%;
    min-height: 300px;
    background-color: var(--bg-sage);
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

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

.service-detail-price {
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-detail-price .price-value {
    font-size: 32px;
}

@media (max-width: 992px) {
    .hero-content,
    .problem-content,
    .story-content,
    .form-wrapper,
    .about-content,
    .contact-grid {
        flex-direction: column;
    }

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

    .section-header h2 {
        font-size: 30px;
    }

    .story-sidebar {
        position: static;
    }

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

    .service-detail-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .header-main {
        padding: 12px 16px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow);
        gap: 16px;
    }

    nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .solution-card,
    .service-card,
    .testimonial-card {
        min-width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .about-stats {
        flex-direction: column;
    }
}
