:root {
    --primary: #2c5530;
    --primary-dark: #1e3a21;
    --secondary: #8b6914;
    --accent: #d4a84b;
    --light: #f8f6f1;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #e5e5e5;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* {
    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(--dark);
    background: var(--white);
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

p { margin-bottom: 1rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

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

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

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

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

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

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

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

.btn-light:hover {
    background: var(--light);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo svg {
    width: 36px;
    height: 36px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 4px 0;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
}

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

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 100vh;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,85,48,0.2) 0%, transparent 60%);
}

/* Hero */
.hero {
    padding-top: 80px;
}

.hero .split-content {
    background: var(--light);
}

.hero-subtitle {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.hero-title {
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-light);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.hero-feature-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Section Base */
.section {
    padding: 100px 0;
}

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

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-text {
    color: var(--gray);
    font-size: 1.1rem;
}

.section-dark .section-text {
    color: rgba(255,255,255,0.75);
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 400px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card-image {
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 28px;
}

.service-card-title {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-card-text {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-card-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.service-card-price .period {
    color: var(--gray);
    font-size: 0.9rem;
}

.service-card-features {
    margin-bottom: 24px;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gray);
}

.service-card-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
}

/* About Split */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-card-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
}

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

.team-card-name {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-card-role {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.team-card-bio {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Gallery */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery-item {
    flex: 1 1 300px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: var(--white);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    margin-bottom: 12px;
}

.cta-text {
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-split {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-hours {
    margin-top: 40px;
    padding: 28px;
    background: var(--light);
    border-radius: 12px;
}

.contact-hours-title {
    margin-bottom: 16px;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

/* Form */
.form-container {
    flex: 1;
    min-width: 340px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox-text {
    font-size: 0.9rem;
    color: var(--gray);
}

.form-checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: 8px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

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

.footer-col:first-child {
    flex: 1.5;
    min-width: 280px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.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-copy {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.cookie-btn-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(44,85,48,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(44,85,48,0); }
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: var(--light);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thanks-title {
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.thanks-text {
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.thanks-service {
    background: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: inline-block;
    box-shadow: var(--shadow);
}

.thanks-service-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.thanks-service-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

/* Legal Pages */
.legal-page {
    padding: 140px 0 80px;
}

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

.legal-title {
    margin-bottom: 12px;
}

.legal-date {
    color: var(--gray);
    margin-bottom: 40px;
}

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

.legal-section h3 {
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.legal-section p,
.legal-section li {
    color: var(--gray);
    line-height: 1.8;
}

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

.legal-section ul li {
    list-style: disc;
    margin-bottom: 8px;
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-header-title {
    margin-bottom: 12px;
}

.page-header-text {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Image Placeholders */
.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-light) 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Services Page */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-title {
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.service-detail-text {
    color: var(--gray);
    margin-bottom: 24px;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--light);
    border-radius: 8px;
    display: inline-flex;
}

.service-detail-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-detail-price .period {
    color: var(--gray);
}

.service-detail-list {
    margin-bottom: 28px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray);
}

.service-detail-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
}

/* About Page */
.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1 1 280px;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 34px;
    height: 34px;
    fill: var(--primary);
}

.value-title {
    margin-bottom: 12px;
}

.value-text {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .split-section {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-content {
        padding: 60px 24px;
    }

    .split-image {
        height: 50vh;
        min-height: 350px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .service-detail {
        flex-direction: column !important;
    }

    .service-detail-image {
        height: 280px;
    }

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

    .cta-inner {
        text-align: center;
        flex-direction: column;
    }

    .cta-btns {
        justify-content: center;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-col {
        min-width: 45%;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 28px;
    }

    .footer-col {
        min-width: 100%;
    }

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

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

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

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