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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #f8b739;
    text-decoration: underline;
}

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 90%;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #e91e63;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e91e63;
}

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    margin-top: 100px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f8e6f0;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.story-intro {
    padding: 100px 20px;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.visual-break {
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.visual-half {
    flex: 1;
    background-color: #f8e6f0;
}

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

.content-half {
    flex: 1;
    padding: 30px;
}

.content-half h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-half p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #34495e;
}

.problem-insight {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.centered-block h2 {
    font-size: 44px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.centered-block > p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #34495e;
}

.insight-cards {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 4px solid #e91e63;
}

.insight-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.solution-reveal {
    padding: 100px 20px;
    background-color: #fafafa;
}

.asymmetric-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: flex-start;
}

.solution-content {
    flex: 1.3;
}

.solution-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2c3e50;
}

.solution-content > p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #34495e;
    font-style: italic;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #34495e;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.benefits-list strong {
    color: #2c3e50;
}

.solution-visual {
    flex: 1;
    background-color: #f8e6f0;
}

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

.testimonials-inline {
    padding: 100px 20px;
    background-color: #2c3e50;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-left: 5px solid #e91e63;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    color: #ecf0f1;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

.services-preview {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.services-intro h2 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 19px;
    color: #34495e;
}

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

.service-card {
    flex: 1;
    min-width: 350px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #f8e6f0;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #555;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
    margin: 0 25px 20px;
}

.cta-select {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #e91e63;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-select:hover {
    background-color: #c2185b;
}

.form-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2c3e50;
}

.selected-service-info {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.trust-elements {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e91e63;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #f39c12;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-disclaimer strong {
    color: #f39c12;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.about-hero {
    margin-top: 150px;
    padding: 80px 20px;
    background-color: #fafafa;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 22px;
    color: #34495e;
}

.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.story-image {
    flex: 1;
    background-color: #f8e6f0;
}

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

.philosophy {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.philosophy-points {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.point {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-top: 4px solid #e91e63;
}

.point h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.point p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.team-approach {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.team-content h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.team-visual {
    margin-top: 40px;
    background-color: #f8e6f0;
}

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

.values {
    padding: 100px 20px;
    background-color: #fafafa;
}

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

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-left: 5px solid #27ae60;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.cta-about {
    padding: 100px 20px;
    background-color: #2c3e50;
}

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

.cta-content h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e91e63;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c2185b;
}

.services-hero {
    margin-top: 150px;
    padding: 80px 20px;
    background-color: #fafafa;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    gap: 70px;
    align-items: center;
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-block.reverse {
    flex-direction: row-reverse;
    background-color: #fafafa;
}

.service-visual {
    flex: 1;
    background-color: #f8e6f0;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #34495e;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e91e63;
    font-size: 22px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #e91e63;
}

.btn-order {
    padding: 14px 30px;
    background-color: #e91e63;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-order:hover {
    background-color: #c2185b;
}

.contact-hero {
    margin-top: 150px;
    padding: 80px 20px;
    background-color: #fafafa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 22px;
    color: #34495e;
}

.contact-info {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.contact-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-top: 4px solid #e91e63;
}

.contact-card h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 20px;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.visit-note {
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.visit-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2c3e50;
}

.visit-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.map-placeholder {
    padding: 60px 20px;
    background-color: #ffffff;
}

.map-info {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f9fa;
    text-align: center;
    border-left: 4px solid #3498db;
}

.map-info p {
    font-size: 16px;
    color: #34495e;
}

.thanks-hero {
    margin-top: 150px;
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.order-confirmation {
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    margin-bottom: 60px;
}

.service-confirmation {
    margin-bottom: 20px;
}

.service-confirmation p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.step {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    text-align: left;
}

.step h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e91e63;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-cta {
    margin: 60px 0;
}

.thanks-cta > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e91e63;
    color: #ffffff;
}

.support-info {
    margin-top: 60px;
    padding: 30px;
    background-color: #f8f9fa;
}

.support-info p {
    font-size: 16px;
    color: #34495e;
}

.legal-page {
    margin-top: 120px;
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #34495e;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content a {
    color: #e91e63;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #c2185b;
}

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

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 992px) {
    .split-visual,
    .asymmetric-layout,
    .story-layout,
    .service-block,
    .contact-grid {
        flex-direction: column;
    }

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

    .insight-cards,
    .philosophy-points,
    .values-grid,
    .trust-grid,
    .steps-grid {
        flex-direction: column;
    }

    .services-grid .service-card {
        min-width: 100%;
    }

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

    .about-intro h1,
    .services-intro h1,
    .contact-hero h1 {
        font-size: 38px;
    }

    .nav-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 10px 15px;
    }

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

    .hero-visual {
        margin-top: 80px;
        height: 60vh;
        min-height: 400px;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

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