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

:root {
    --primary-color: #2c3e50;
    --accent-color: #c89666;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    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: 2rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #b37d4e;
}

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

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

.main-nav {
    background: var(--bg-white);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-split,
.intro-split,
.story-split,
.services-split,
.benefits-split,
.form-split,
.about-hero-split,
.about-story-split,
.experience-split,
.values-split,
.service-detail-split,
.contact-split,
.location-split,
.thanks-info-split,
.thanks-cta-split {
    display: flex;
    min-height: 90vh;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 4rem;
}

.split-right {
    padding: 0;
}

.hero-image,
.intro-image,
.story-image,
.services-image,
.benefits-image,
.form-image,
.about-hero-image,
.about-story-image,
.experience-image,
.values-image,
.service-detail-image,
.contact-image,
.location-image,
.thanks-image,
.thanks-cta-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image img,
.intro-image img,
.story-image img,
.services-image img,
.benefits-image img,
.form-image img,
.about-hero-image img,
.about-story-image img,
.experience-image img,
.values-image img,
.service-detail-image img,
.contact-image img,
.location-image img,
.thanks-image img,
.thanks-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content,
.intro-text,
.story-content,
.services-content,
.benefits-content,
.about-hero-content,
.about-story-content,
.experience-content {
    max-width: 550px;
}

.hero-content h1,
.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content p,
.intro-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.cta-large:hover {
    background: #b37d4e;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

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

.intro-text h2,
.story-content h2,
.services-content h2,
.benefits-content h2,
.about-story-content h2,
.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p,
.story-content p,
.benefits-content p,
.about-story-content p,
.experience-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.trust-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.trust-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.trust-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.trust-card p {
    color: var(--text-light);
}

.testimonial-block {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.testimonial-block blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block p {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.service-list {
    margin-top: 2rem;
}

.service-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.process-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
}

.form-container {
    max-width: 550px;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.final-cta-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    margin-bottom: 0.6rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #b37d4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.philosophy-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.philosophy-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.philosophy-card {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-list {
    max-width: 550px;
}

.value-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-about-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-hero,
.contact-hero {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-hero-content p,
.contact-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-content {
    max-width: 550px;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-duration {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-price-block {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.highlight {
    background: var(--bg-light);
}

.highlight-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comparison-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.comparison-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.comparison-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.comparison-card p {
    color: var(--text-light);
    font-weight: 500;
}

.services-cta {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    max-width: 550px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.location-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.location-info {
    max-width: 550px;
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.transport-list {
    list-style: none;
}

.transport-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.transport-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.faq-contact {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-cta {
    padding: 5rem 2rem;
    background: var(--bg-white);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
}

.thanks-info-content {
    max-width: 550px;
}

.thanks-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-service-info {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.service-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-info-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.preparation-list {
    list-style: none;
    margin: 2rem 0;
}

.preparation-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.preparation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.thanks-cta-content {
    max-width: 550px;
}

.thanks-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-cta-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.thanks-contact {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.thanks-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-contact-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.5rem;
}

.contact-email a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.legal-container a:hover {
    color: #b37d4e;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .story-split,
    .services-split,
    .benefits-split,
    .form-split,
    .about-hero-split,
    .about-story-split,
    .experience-split,
    .values-split,
    .service-detail-split,
    .contact-split,
    .location-split,
    .thanks-info-split,
    .thanks-cta-split {
        flex-direction: column;
        min-height: auto;
    }

    .reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 3rem 2rem;
    }

    .hero-image,
    .intro-image,
    .story-image,
    .services-image,
    .benefits-image,
    .form-image,
    .about-hero-image,
    .about-story-image,
    .experience-image,
    .values-image,
    .service-detail-image,
    .contact-image,
    .location-image,
    .thanks-image,
    .thanks-cta-image {
        min-height: 400px;
    }

    .hero-content h1,
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-grid,
    .process-grid,
    .philosophy-grid,
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p,
    .intro-text p {
        font-size: 1rem;
    }

    .intro-text h2,
    .story-content h2,
    .services-content h2 {
        font-size: 1.8rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

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

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

    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
