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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --dark-color: #2c2416;
    --light-color: #f9f6f2;
    --text-color: #333;
    --border-color: #e0d5c7;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
}

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

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

ul {
    list-style: none;
}

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

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

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

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

.hero-text {
    flex: 1;
    padding: 4rem 3rem 4rem 4rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

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

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

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

.cta-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.35);
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background: var(--light-color);
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 3rem 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.3rem;
}

.why-choose {
    padding: 5rem 0;
    background: #fff;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.reason-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.reason-card p {
    color: #666;
    line-height: 1.7;
}

.services-preview-split {
    display: flex;
    padding: 6rem 0;
    background: #fff;
}

.services-text {
    flex: 1;
    padding: 2rem 4rem 2rem 3rem;
}

.services-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.services-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
}

.services-list {
    margin-bottom: 2.5rem;
}

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

.service-item h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-item p {
    color: #666;
    line-height: 1.7;
}

.services-image {
    flex: 1;
    overflow: hidden;
}

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

.testimonials {
    padding: 5rem 0;
    background: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.95rem;
}

.booking-split {
    display: flex;
    padding: 6rem 0;
    background: #fff;
}

.booking-image {
    flex: 1;
    overflow: hidden;
}

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

.booking-form-container {
    flex: 1;
    padding: 3rem 4rem;
}

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

.booking-form-container > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.booking-form .form-group {
    margin-bottom: 1.8rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--dark-color);
}

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

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

.booking-form textarea {
    resize: vertical;
}

.booking-form button {
    background: var(--primary-color);
    color: #fff;
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

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

.cta-urgency {
    padding: 5rem 0;
    background: var(--primary-color);
    text-align: center;
    color: #fff;
}

.cta-urgency h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-urgency p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-urgency .cta-primary-large {
    background: #fff;
    color: var(--primary-color);
}

.cta-urgency .cta-primary-large:hover {
    background: var(--light-color);
}

.main-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 4rem 0 0;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p,
.footer-col li {
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sticky-cta a:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 36, 22, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

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

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

.btn-cookie-accept {
    background: var(--primary-color);
    color: #fff;
}

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

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

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

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #666;
}

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

.about-text {
    flex: 1;
    padding: 2rem 4rem 2rem 3rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.values {
    padding: 5rem 0;
    background: var(--light-color);
}

.values h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    color: #666;
    line-height: 1.8;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: #fff;
}

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

.team-image {
    flex: 1;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    padding: 3rem 4rem;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.team-text .cta-secondary {
    margin-top: 1.5rem;
}

.mission {
    padding: 5rem 0;
    background: var(--light-color);
    text-align: center;
}

.mission h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-about .cta-primary-large {
    background: #fff;
    color: var(--primary-color);
}

.cta-about .cta-primary-large:hover {
    background: var(--light-color);
}

.services-intro {
    padding: 3rem 0;
    background: #fff;
    text-align: center;
}

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
}

.services-catalog {
    padding: 4rem 0;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem 4rem;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: disc;
    padding-left: 1.5rem;
    color: #666;
}

.service-features li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.extras {
    padding: 4rem 0;
    background: var(--light-color);
}

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

.extras-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.extra-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    min-width: 200px;
    box-shadow: var(--shadow);
}

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

.extra-item p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-services {
    padding: 5rem 0;
    background: var(--dark-color);
    text-align: center;
    color: #fff;
}

.cta-services h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ddd;
}

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

.contact-info {
    flex: 1;
    padding: 2rem 4rem 2rem 3rem;
}

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

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

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

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

.contact-detail a {
    color: var(--primary-color);
}

.contact-detail a:hover {
    text-decoration: underline;
}

.transport-list {
    list-style: none;
    margin-top: 1rem;
}

.transport-list li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 4rem;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.faq-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

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

.faq-item p {
    color: #666;
    line-height: 1.8;
}

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

.cta-contact h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-contact .cta-primary-large {
    background: #fff;
    color: var(--primary-color);
}

.cta-contact .cta-primary-large:hover {
    background: var(--light-color);
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: #fff;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

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

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

.thanks-message {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}

.thanks-message p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1rem;
}

#selected-service-display {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    padding: 5rem 0;
    background: #fff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
}

.steps-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 2.5rem;
}

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

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

.step-card p {
    color: #666;
    line-height: 1.8;
}

.social-invite {
    padding: 4rem 0;
    background: var(--light-color);
    text-align: center;
}

.social-invite h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.social-invite p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.legal-page {
    padding: 4rem 0;
    background: #fff;
}

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

.legal-update {
    color: #888;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: #555;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-split,
    .intro-split,
    .services-preview-split,
    .booking-split,
    .about-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-text,
    .intro-text,
    .services-text,
    .booking-form-container,
    .about-text,
    .team-text,
    .contact-info,
    .service-detail-content {
        padding: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .intro-image img,
    .about-image img,
    .team-image img,
    .service-detail-image img {
        height: 400px;
    }

    .hero-image img {
        height: 500px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .reasons-grid,
    .testimonials-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}
