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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.intro-image {
    flex: 1;
}

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

.intro-content {
    flex: 1;
    padding: 3rem 5%;
}

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

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-image {
    flex: 1;
}

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

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.testimonial-split {
    display: flex;
    padding: 5rem 0;
}

.testimonial-content {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.testimonial-content blockquote {
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.testimonial-content blockquote p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content blockquote footer {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-image {
    flex: 1;
}

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

.form-section {
    display: flex;
    padding: 5rem 0;
    background: var(--light-bg);
}

.form-left {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-features {
    list-style: none;
}

.form-features li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
}

.form-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.form-right {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 500px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.why-individual {
    padding: 5rem 5%;
}

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

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

.why-content p {
    font-size: 1.15rem;
    line-height: 1.8;
}

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

.why-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.why-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.why-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-final {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cta-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: var(--white);
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.about-hero-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.about-hero-content {
    flex: 1;
    padding: 3rem 5%;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-hero-image {
    flex: 1;
}

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

.story-split {
    display: flex;
    padding: 5rem 0;
    background: var(--light-bg);
}

.story-image {
    flex: 1;
}

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

.story-content {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.team-section {
    padding: 5rem 5%;
}

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

.team-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

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

.member-image {
    flex: 0 0 200px;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

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

.member-info p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.values-split {
    display: flex;
    padding: 5rem 0;
}

.values-content {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.values-image {
    flex: 1;
}

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

.cta-about {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

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

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

.services-hero p {
    font-size: 1.2rem;
    color: #666;
}

.services-list {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-price-box {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-book {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

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

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

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

.custom-tour {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

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

.custom-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-services {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

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

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

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-split {
    display: flex;
    padding: 5rem 0;
}

.contact-info {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-block .note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(44, 62, 80, 0.9);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

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

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-contact {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
}

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

.thanks-hero {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 3rem 5%;
}

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

.thanks-content > p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.thanks-info {
    margin-bottom: 2.5rem;
}

.thanks-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.thanks-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.selected-service {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 6px;
}

.selected-service p {
    font-size: 1.1rem;
    margin: 0;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.thanks-extra {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

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

.tip-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tip-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tip-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-page {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: #666;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.gdpr-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.gdpr-table td {
    font-size: 1.05rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .form-section,
    .about-hero-split,
    .story-split,
    .values-split,
    .contact-split,
    .service-detail-card,
    .thanks-hero {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card.reverse,
    .team-member.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-right img,
    .about-hero-image img,
    .thanks-image img {
        height: 50vh;
    }

    .intro-image img,
    .story-image img,
    .values-image img {
        height: 400px;
    }

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

    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.9rem;
    }

    .why-grid,
    .faq-grid,
    .tips-grid {
        flex-direction: column;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

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

    .service-card {
        flex-direction: column;
    }

    .member-image {
        flex: 0 0 auto;
    }
}

@media (max-width: 640px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

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

    .section-header h2,
    .services-hero h1 {
        font-size: 2rem;
    }

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

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