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

:root {
    --primary-color: #8b6f47;
    --secondary-color: #d4a574;
    --accent-color: #c17e4a;
    --dark-color: #2c2416;
    --light-color: #f8f5f0;
    --gray-color: #6b6560;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

.main-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

.hero-stacked {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-stacked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1565193566173-7a0ee3dbe261?w=1600') center/cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 36, 22, 0.4), rgba(44, 36, 22, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.intro-block {
    padding: 90px 20px;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-block p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

.visual-break {
    padding: 0;
    overflow: hidden;
}

.image-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stack-item {
    width: 100%;
}

.stack-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.philosophy-section {
    padding: 100px 20px;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.link-arrow {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.services-preview {
    padding: 100px 20px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header-center p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    position: relative;
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-body > p {
    margin-bottom: 20px;
    color: var(--gray-color);
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-color);
}

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

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-select-service.selected {
    background: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(193, 126, 74, 0.3);
}

.testimonial-block {
    padding: 80px 20px;
}

.testimonial-large {
    border-left: 5px solid var(--accent-color);
    padding-left: 40px;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.8;
}

.testimonial-large cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    color: var(--gray-color);
}

.why-us-section {
    padding: 100px 20px;
}

.why-us-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.features-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-block {
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.feature-offset-1 {
    margin-left: 0;
}

.feature-offset-2 {
    margin-left: 50px;
}

.feature-offset-3 {
    margin-left: 100px;
}

.feature-offset-4 {
    margin-left: 150px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-block p {
    color: var(--gray-color);
    font-size: 1.05rem;
}

.gallery-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.gallery-masonry {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.booking-section {
    padding: 100px 20px;
    background: var(--white);
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.booking-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.selected-service-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    border-left: 5px solid var(--accent-color);
}

.selected-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.selected-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.selected-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.selected-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.booking-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-actions {
    margin-top: 30px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.final-cta {
    padding: 100px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--gray-color);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column p {
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-column ul a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: var(--secondary-color);
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

@media (min-width: 768px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-masonry {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .image-stack {
        flex-direction: row;
    }

    .stack-item {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .feature-offset-1,
    .feature-offset-2,
    .feature-offset-3,
    .feature-offset-4 {
        margin-left: 0;
    }

    .selected-details {
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-hero {
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-hero .lead {
    font-size: 1.3rem;
    color: var(--gray-color);
}

.content-section {
    padding: 60px 20px;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.image-break {
    margin: 60px 0;
}

.image-break img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-block {
    margin-top: 60px;
    padding: 50px;
    background: var(--light-color);
    border-radius: 12px;
    text-align: center;
}

.cta-block h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-block p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--gray-color);
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    margin-bottom: 60px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.service-detail-card.featured-card {
    border: 2px solid var(--accent-color);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-detail-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-detail-intro {
    padding: 35px;
    background: var(--light-color);
}

.service-detail-intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-level {
    display: inline-block;
    padding: 6px 15px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-body {
    padding: 35px;
}

.service-detail-body p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.service-detail-body h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-body ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-body ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-color);
}

.service-detail-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.contact-section {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--gray-color);
    line-height: 1.8;
}

.info-block a {
    color: var(--accent-color);
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 10px;
    color: #888;
}

.contact-visual {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.visual-note {
    margin-top: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
}

.visual-note p {
    margin: 0;
    color: var(--gray-color);
}

.visual-note a {
    color: var(--accent-color);
    text-decoration: underline;
}

.faq-section {
    padding: 80px 20px;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-color);
    line-height: 1.8;
}

.thanks-hero {
    padding: 100px 20px 60px;
    text-align: center;
    background: var(--light-color);
}

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

.thanks-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--gray-color);
}

.thanks-details {
    padding: 80px 20px;
}

.confirmation-box {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.confirmation-box h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.booking-summary {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
}

.booking-summary p {
    margin-bottom: 15px;
    color: var(--gray-color);
    line-height: 1.8;
}

.booking-summary strong {
    color: var(--dark-color);
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 20px;
    padding-left: 60px;
    position: relative;
    margin-bottom: 20px;
    background: var(--light-color);
    border-radius: 8px;
    color: var(--gray-color);
    line-height: 1.8;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.link-secondary {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-decoration: underline;
}

.legal-page {
    padding: 60px 20px 80px;
}

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

.legal-page .updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 18px;
    color: var(--gray-color);
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    color: var(--gray-color);
    line-height: 1.7;
}

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

@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .service-detail-header {
        flex-direction: row;
    }

    .service-detail-image {
        width: 50%;
        height: auto;
        min-height: 350px;
    }

    .service-detail-intro {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

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

    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}