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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #4A8060;
    --accent-color: #D4A574;
    --dark-text: #1A1A1A;
    --light-text: #F5F5F5;
    --gray-text: #666666;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 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(--dark-text);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-disclosure {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--accent-color);
}

.ad-label {
    font-size: 13px;
    color: var(--gray-text);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background-color: var(--bg-light);
}

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

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

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

.hero-image {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.intro-content-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.intro-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 0 0 calc(50% - 20px);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
}

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

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gray-text);
    line-height: 1.6;
}

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

.service-select {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.process-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.process-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.testimonials-section h2 {
    color: var(--light-text);
}

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

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

.form-intro p {
    font-size: 16px;
    margin-bottom: 32px;
    color: var(--gray-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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(--primary-color);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    padding: 40px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--gray-text);
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: 60px 0 20px;
}

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

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--light-text);
}

.footer-column p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--light-text);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-text);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: 20px;
    box-shadow: 0 -4px 12px var(--shadow);
    z-index: 2000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

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

.page-header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-pricing-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 24px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.price-label {
    font-size: 15px;
    color: var(--gray-text);
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
}

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

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

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

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 32px;
    color: var(--gray-text);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.about-intro {
    padding: 80px 0;
}

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

.about-image-large {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

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

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

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

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

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

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

.approach-section {
    padding: 80px 0;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.approach-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.team-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title-left {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-intro {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--gray-text);
    max-width: 800px;
}

.certifications-section {
    padding: 80px 0;
}

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

.cert-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.cert-content {
    flex: 1;
}

.cert-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.cert-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.contact-info-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.email-display {
    color: var(--dark-text);
    font-weight: 600;
    user-select: text;
}

.contact-note {
    font-size: 14px;
    color: var(--gray-text);
    font-style: italic;
    margin-top: 12px;
}

.hours-list {
    margin-top: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row .day {
    font-weight: 600;
    color: var(--dark-text);
}

.hours-row .time {
    color: var(--gray-text);
}

.contact-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
}

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

.contact-approach {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-approach h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    gap: 20px;
}

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

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

.step-item p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.6;
}

.service-area-section {
    padding: 60px 0;
}

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

.service-area-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-area-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

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

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

.faq-item {
    flex: 0 0 calc(50% - 20px);
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.steps-timeline {
    margin-bottom: 48px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-text);
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.contact-info-compact {
    padding: 40px 0;
    background-color: var(--bg-white);
}

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

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

.compact-info p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.legal-page {
    padding: 60px 0;
}

.last-updated {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 32px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--gray-text);
}

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

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

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

.cookie-table thead {
    background-color: var(--bg-light);
}

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

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

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

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .intro-content-reverse,
    .process-split,
    .about-split,
    .approach-layout,
    .cert-split,
    .contact-layout {
        flex-direction: column;
    }

    .service-card,
    .testimonial-card,
    .value-item,
    .faq-item,
    .step-item {
        flex: 0 0 100%;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }
}

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

    .section-title-center,
    .page-header h1 {
        font-size: 32px;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-disclosure {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
