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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97c05c;
    --accent-color: #ff9500;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

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(--bg-white);
}

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

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

a:hover {
    color: var(--secondary-color);
}

.ad-notice {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4ea 100%);
    padding: 80px 24px;
}

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

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
    color: white;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #7da84a;
    transform: translateY(-2px);
    color: white;
}

.split-intro {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

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

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image-left {
    flex: 1;
}

.split-image-left img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.split-content-right {
    flex: 1;
}

.split-content-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.benefits-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

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

.benefits-header h2 {
    font-size: 42px;
    color: var(--text-dark);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.services-showcase {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

.split-content-left {
    flex: 1;
}

.split-content-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.split-services-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    background-color: var(--bg-light);
    padding: 28px 32px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.process-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #e8f4ea 0%, #f8f9fa 100%);
}

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

.process-header h2 {
    font-size: 42px;
    color: var(--text-dark);
}

.process-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.cta-split {
    padding: 100px 24px;
    background-color: var(--primary-color);
}

.cta-split .split-container {
    align-items: center;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    border-radius: 12px;
}

.cta-content {
    flex: 1;
    color: white;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.8;
}

.form-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 48px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-section ul li a {
    color: white;
    opacity: 0.85;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 32px;
}

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

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #27ae60;
}

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 24px;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    opacity: 0.95;
}

.services-detail {
    padding: 60px 24px;
    background-color: var(--bg-white);
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 80px;
}

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.services-cta {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

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

.cta-content-center h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content-center p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-intro {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.values-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

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

.values-header h2 {
    font-size: 42px;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.team-section {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

.team-image {
    flex: 1;
}

.team-image img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-text {
    flex: 1;
}

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

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

.stats-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.approach-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

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

.approach-visual {
    flex: 1;
}

.approach-visual img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.about-cta {
    padding: 80px 24px;
    background-color: var(--primary-color);
}

.about-cta .cta-content-center {
    color: white;
}

.about-cta .cta-content-center h2 {
    color: white;
}

.about-cta .cta-content-center p {
    color: white;
    opacity: 0.95;
}

.contact-main {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 32px;
}

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

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.service-area {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.area-content {
    max-width: 900px;
    margin: 0 auto;
}

.area-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.area-list {
    display: flex;
    gap: 60px;
}

.area-column h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.area-column ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.area-column ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
}

.faq-section {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

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

.faq-container h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.contact-cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-cta .cta-content-center {
    color: white;
}

.contact-cta .cta-content-center h2 {
    color: white;
}

.contact-cta .cta-content-center p {
    color: white;
    opacity: 0.95;
}

.thanks-section {
    padding: 100px 24px;
    background-color: var(--bg-white);
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

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

.step-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 48px;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.thanks-extra {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.extra-content {
    max-width: 1100px;
    margin: 0 auto;
}

.extra-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 10px;
}

.resource-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page {
    padding: 60px 24px;
    background-color: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

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

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-content,
    .split-container,
    .service-split,
    .contact-split,
    .approach-split,
    .area-list {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .benefits-grid,
    .values-grid,
    .faq-grid,
    .resource-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .stats-container {
        flex-direction: column;
        gap: 32px;
    }
}