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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #fafafa;
}

a {
    color: #8b6f47;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6b5437;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

.btn-cookie:hover {
    transform: translateY(-2px);
}

.btn-cookie.accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #6b5437;
}

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

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

.header-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-mark {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2c2c2c;
}

.brand-mark a {
    color: #2c2c2c;
}

.nav-inline {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-inline a {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: #5a5a5a;
    position: relative;
}

.nav-inline a:hover,
.nav-inline a.active {
    color: #8b6f47;
}

.nav-inline a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8b6f47;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    font-family: 'Arial', sans-serif;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.editorial-container {
    max-width: 100%;
    background-color: #fafafa;
}

.story-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-column {
    max-width: 680px;
    width: 100%;
    padding: 60px 24px;
}

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

.hero-narrative {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.hero-text-center {
    max-width: 680px;
    width: 100%;
    padding: 80px 24px 40px;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #5a5a5a;
    font-style: italic;
    margin-bottom: 20px;
}

.inline-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding: 0;
    background-color: #e8e4df;
}

.inline-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-visual-small {
    width: 100%;
    max-width: 680px;
    margin: 40px 0;
    background-color: #e8e4df;
}

.inline-visual-small img {
    width: 100%;
    height: auto;
    display: block;
}

.narrative-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafafa;
}

.narrative-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.narrative-block p {
    margin-bottom: 20px;
}

.insight-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
}

.insight-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.insight-section p {
    margin-bottom: 20px;
}

.citation {
    font-size: 14px;
    color: #8b6f47;
    font-weight: 600;
    padding: 2px 6px;
    background-color: rgba(139, 111, 71, 0.1);
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.citation:hover {
    background-color: rgba(139, 111, 71, 0.2);
}

.problem-amplification {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.problem-amplification h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.solution-reveal {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafafa;
}

.solution-reveal h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.services-narrative {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 60px 24px;
}

.services-narrative h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.service-cards-editorial {
    max-width: 680px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.service-card-story {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-visual {
    width: 100%;
    background-color: #e8e4df;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.card-text h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.card-text p {
    margin-bottom: 16px;
}

.composition {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    background-color: #f9f9f9;
    padding: 16px;
    border-left: 3px solid #8b6f47;
    margin-bottom: 16px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover {
    background-color: #6b5437;
    transform: translateY(-2px);
}

.testimonial-inline {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 32px;
    padding-left: 28px;
    border-left: 4px solid #8b6f47;
}

.testimonial-inline cite {
    display: block;
    font-size: 16px;
    font-style: normal;
    color: #888;
    margin-top: 12px;
}

.form-narrative {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.form-narrative h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.editorial-form {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #d5d5d5;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 12px;
}

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

.trust-elements {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafafa;
}

.trust-elements h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 18px;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
    font-size: 20px;
}

.final-cta-narrative {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
}

.final-cta-narrative h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.btn-cta-text {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 24px;
}

.btn-cta-text:hover {
    background-color: #6b5437;
    transform: translateY(-2px);
    color: #ffffff;
}

.disclaimer-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    padding: 24px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.references-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafafa;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.references-list {
    list-style: decimal;
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #8b6f47;
    text-decoration: underline;
}

.page-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding-top: 60px;
}

.page-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #999;
    font-family: 'Arial', sans-serif;
}

.philosophy-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
}

.philosophy-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.principle-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.principle-list li {
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.7;
}

.values-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    padding: 60px 24px;
}

.split-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #e8e4df;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-approach {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafafa;
}

.team-approach h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.sustainability-commitment {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.sustainability-commitment h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.commitment-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 18px;
}

.commitment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
    font-size: 24px;
}

.closing-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
}

.closing-message h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.services-grid-editorial {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 60px;
}

.service-detail-card {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    background-color: #e8e4df;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-details {
    background-color: #f9f9f9;
    padding: 24px;
    border-left: 4px solid #8b6f47;
    margin-bottom: 24px;
}

.service-details h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.6;
}

.composition-full {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

.btn-service-select {
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif;
    align-self: flex-start;
}

.btn-service-select:hover {
    background-color: #6b5437;
    transform: translateY(-2px);
}

.usage-guidance {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
}

.usage-guidance h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 400;
    color: #1a1a1a;
}

.routine-steps {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.routine-step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.routine-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #8b6f47;
}

.routine-step ol {
    list-style: decimal;
    padding-left: 20px;
}

.routine-step li {
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.6;
}

.cta-services {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.cta-services h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.contact-info-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 40px 24px;
}

.contact-layout {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 32px;
    font-weight: 400;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #8b6f47;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-visual {
    flex: 1;
    background-color: #e8e4df;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
}

.faq-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 32px;
    font-weight: 400;
    color: #1a1a1a;
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.map-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.map-placeholder h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
    padding-top: 80px;
}

.thanks-hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.thanks-message {
    max-width: 680px;
    width: 100%;
}

.thanks-message h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-message h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
    margin-top: 40px;
    font-weight: 600;
    color: #8b6f47;
}

.next-steps {
    background-color: #f9f9f9;
    padding: 28px;
    border-left: 4px solid #8b6f47;
    margin: 32px 0;
}

.steps-list {
    list-style: decimal;
    padding-left: 24px;
    margin-top: 16px;
}

.steps-list li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.7;
}

.thanks-visual {
    width: 100%;
    margin: 40px 0;
    background-color: #e8e4df;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.meanwhile-section {
    margin: 40px 0;
}

.resource-links {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.resource-links li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.resource-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.cta-thanks {
    margin-top: 40px;
    text-align: center;
}

.commitment-reminder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f3f0;
}

.commitment-reminder h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

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

.legal-page .legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #8b6f47;
}

.legal-page .legal-content ul,
.legal-page .legal-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.legal-page .legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-minimal {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8b8b8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: #b8b8b8;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #8b6f47;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 36px;
    }

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

    .narrative-block h2,
    .insight-section h2,
    .problem-amplification h2,
    .solution-reveal h2,
    .page-hero h1 {
        font-size: 28px;
    }

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

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

    .routine-steps {
        flex-direction: column;
    }

    .nav-inline {
        gap: 16px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
}