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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a90b5;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.btn-cookie.accept:hover {
    background: #d67118;
}

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

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

.navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: calc(100vh - 80px);
    max-height: 900px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef4 100%);
}

.hero-content {
    max-width: 600px;
}

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

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-primary:hover {
    background: #d67118;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

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

.cta-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.cta-inline {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.cta-inline:hover {
    gap: 12px;
}

.split-section {
    display: flex;
    align-items: center;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

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

.stats-split {
    display: flex;
    background: var(--primary-color);
    color: white;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 60px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

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

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 80px 30px 0;
}

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-center p {
    font-size: 19px;
    color: var(--text-light);
}

.services-intro {
    background: var(--background-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.service-visual {
    flex: 1;
    min-width: 45%;
}

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

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.btn-select-service {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-select-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.benefit-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefit-list li {
    padding: 12px 0 12px 32px;
    font-size: 17px;
    color: var(--text-light);
    position: relative;
}

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

.testimonials-split {
    display: flex;
    background: var(--background-light);
    padding: 80px 30px;
}

.testimonial-item {
    flex: 1;
    padding: 40px;
    background: white;
    margin: 0 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.form-section-split {
    display: flex;
    background: white;
    padding: 100px 0;
}

.form-left {
    flex: 1;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-benefit-item {
    font-size: 17px;
    font-weight: 600;
}

.form-right {
    flex: 1;
    padding: 60px;
}

.contact-form {
    max-width: 500px;
}

.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,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: #d67118;
    transform: translateY(-2px);
}

.form-privacy {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.form-privacy a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cta-banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-banner-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-banner-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-banner-button:hover {
    background: #d67118;
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 30px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

.footer-col ul li a:hover {
    opacity: 1;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-button {
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #d67118;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.5);
}

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

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 30px;
}

.values-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

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

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

.service-detail-left img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.service-detail-right h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-detail-right h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-right ul {
    margin-bottom: 24px;
    margin-left: 20px;
}

.service-detail-right ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.comparison-section {
    background: var(--background-light);
    padding: 100px 30px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.comparison-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.comparison-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 100px;
    gap: 80px;
}

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

.contact-info-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-section {
    flex: 1;
}

.contact-map-section img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
}

.faq-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
}

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

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

.thanks-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: var(--background-light);
}

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

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

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

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 40px;
}

.service-selected-box {
    background: var(--background-light);
    padding: 24px;
    border-radius: 8px;
}

.service-name {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 8px;
}

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

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-steps {
    list-style: none;
}

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

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

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

.thanks-additional p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.thanks-link {
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

.thanks-contact a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

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

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

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

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .form-section-split,
    .contact-split,
    .service-card,
    .service-detail-item {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .form-left,
    .form-right {
        padding: 60px 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .split-content h2 {
        font-size: 36px;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

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

    .testimonial-item {
        margin: 15px 0;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .section-header-center h2,
    .values-section h2,
    .comparison-section h2,
    .faq-section h2 {
        font-size: 36px;
    }

    .split-content h2,
    .contact-info-section h2 {
        font-size: 32px;
    }

    .service-visual,
    .service-details {
        min-width: 100%;
    }

    .service-details {
        padding: 40px 30px;
    }

    .cta-split-banner {
        padding: 60px 30px;
    }

    .cta-banner-content h2 {
        font-size: 36px;
    }

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

    .sticky-cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }

    .thanks-container {
        padding: 40px 30px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .page-hero {
        padding: 80px 30px;
    }

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

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

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