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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-notice {
    background-color: #fef3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-card {
    background-color: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.hero-content {
    padding: 60px 50px;
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5a2e 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-image {
    background-color: #e8f5e9;
    height: 400px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2d7a3e;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2d7a3e;
    text-decoration: none;
    border: 2px solid #2d7a3e;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d7a3e;
    color: #ffffff;
}

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

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

.insight-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.insight-card.highlighted {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #2d7a3e;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1f5a2e;
}

.insight-card p {
    color: #4a5568;
    line-height: 1.7;
}

.problem-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1f5a2e;
    line-height: 1.3;
}

.content-block p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 10px;
    overflow: hidden;
}

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

.services-preview {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f5a2e;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    background-color: #e8f5e9;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 22px;
    color: #1f5a2e;
}

.service-card p {
    padding: 0 25px 15px;
    color: #4a5568;
    line-height: 1.6;
}

.service-card .price {
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 700;
    color: #2d7a3e;
}

.service-link {
    display: inline-block;
    margin: 0 25px 25px;
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1f5a2e;
}

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

.testimonial-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonial-card {
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5a2e 100%);
    color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1f5a2e;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 35px;
    color: #4a5568;
    line-height: 1.6;
}

.main-form,
.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d7a3e;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2d7a3e;
}

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    line-height: 1.6;
}

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

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

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

.btn-accept {
    background-color: #2d7a3e;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5a2e 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

.subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1f5a2e;
}

.story-text p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 10px;
    overflow: hidden;
}

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

.mission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mission-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1f5a2e;
    text-align: center;
}

.mission-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f5a2e;
}

.approach-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px 30px;
    border-radius: 10px;
    border-left: 4px solid #2d7a3e;
}

.approach-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1f5a2e;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f5a2e;
}

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

.team-image {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 10px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
}

.team-text p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f5a2e;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
}

.value-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1f5a2e;
}

.value-item p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box {
    background: linear-gradient(135deg, #2d7a3e 0%, #1f5a2e 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.service-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail.alternate {
    background-color: #f8f9fa;
}

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

.service-layout.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1f5a2e;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 25px;
}

.service-content p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #1f5a2e;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
    font-size: 18px;
}

.service-duration {
    margin-top: 25px;
    padding: 15px 20px;
    background-color: #f0f9ff;
    border-left: 4px solid #2d7a3e;
    font-weight: 600;
    color: #2c3e50;
}

.service-image {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

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

.comparison-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f5a2e;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comparison-label {
    flex: 1.5;
    color: #4a5568;
    font-size: 16px;
}

.comparison-arrow {
    font-size: 20px;
    color: #2d7a3e;
}

.comparison-result {
    flex: 1;
    font-weight: 600;
    color: #1f5a2e;
}

.booking-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.booking-wrapper {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.booking-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1f5a2e;
    text-align: center;
}

.booking-intro {
    text-align: center;
    margin-bottom: 35px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1f5a2e;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d7a3e;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.7;
}

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

.contact-note {
    margin-top: 10px;
    font-size: 15px;
    font-style: italic;
    opacity: 0.9;
}

.contact-image-card {
    flex: 1;
    min-width: 300px;
    position: relative;
    background-color: #e8f5e9;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px;
    color: #ffffff;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f5a2e;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1f5a2e;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.availability-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.availability-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.availability-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1f5a2e;
}

.availability-card p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.7;
}

.availability-card .cta-primary {
    margin-top: 20px;
}

.thanks-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1f5a2e;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
    line-height: 1.7;
}

.service-confirmation {
    margin: 30px 0;
}

.service-selected {
    background-color: #f0f9ff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 17px;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1f5a2e;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #1f5a2e;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.additional-resources {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-resources h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f5a2e;
}

.resources-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1f5a2e;
}

.resource-card p {
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1f5a2e;
}

.last-updated {
    color: #718096;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1f5a2e;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 30px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .split-content,
    .story-layout,
    .team-layout,
    .service-layout {
        flex-direction: column;
    }

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

    .card-grid,
    .service-cards,
    .approach-cards,
    .values-grid {
        flex-direction: column;
    }

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

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

    .comparison-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

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