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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a961;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.cookie-content a {
    color: var(--secondary-color);
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #d4b56f;
}

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    background-color: var(--bg-light);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-white);
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 550px;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

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

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

.intro-split {
    display: flex;
    min-height: 600px;
}

.intro-image {
    flex: 0 0 45%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

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

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-highlight {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.section-header-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-white);
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-image-container {
    flex: 0 0 50%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

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

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

.service-details p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.btn-select-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #333333;
    transform: translateX(5px);
}

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

.booking-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.booking-left {
    flex: 0 0 40%;
}

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

.booking-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
}

.selected-service-display strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.selected-service-display div {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.booking-right {
    flex: 1;
}

.booking-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1.2rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

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

.why-choose-split {
    display: flex;
    min-height: 600px;
}

.why-text {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--bg-white);
    font-weight: 700;
}

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

.benefits-list li {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.why-image {
    flex: 0 0 45%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.page-hero-split {
    display: flex;
    min-height: 450px;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 4rem;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image-right {
    flex: 0 0 50%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.page-hero-centered {
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.page-hero-centered p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.story-section-split {
    display: flex;
    min-height: 650px;
}

.story-image {
    flex: 0 0 40%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

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

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-split {
    display: flex;
    min-height: 600px;
}

.team-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.team-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-image {
    flex: 0 0 45%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.services-detail-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    min-height: 550px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

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

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

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

.service-includes strong {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

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

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

.service-price-display {
    font-size: 2.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 1.5rem 0;
}

.contact-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 650px;
}

.contact-info-left {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--bg-light);
}

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

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

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

.contact-detail p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image-right {
    flex: 0 0 45%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.location-info-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    min-height: 550px;
}

.location-image {
    flex: 0 0 40%;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.location-content {
    flex: 1;
    padding: 4rem;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.location-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    background-color: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-container > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-message {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-message p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-message p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

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

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

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--text-dark);
}

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

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

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.legal-container a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-container em {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.footer-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.footer-column p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .why-choose-split,
    .page-hero-split,
    .story-section-split,
    .team-section-split,
    .contact-section-split,
    .location-info-split,
    .service-detail-split {
        flex-direction: column;
    }

    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-image,
    .intro-text,
    .why-text,
    .why-image,
    .hero-content-left,
    .hero-image-right,
    .story-image,
    .story-content,
    .team-content,
    .team-image,
    .contact-info-left,
    .contact-image-right,
    .location-image,
    .location-content,
    .service-detail-image,
    .service-detail-content,
    .service-image-container,
    .service-details {
        flex: 1 1 100%;
        min-height: 400px;
    }

    .booking-container-split {
        flex-direction: column;
    }

    .booking-left,
    .booking-right {
        flex: 1 1 100%;
    }

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

    .section-header-centered h2,
    .values-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.05rem;
    }

    .intro-text,
    .story-content,
    .team-content,
    .location-content,
    .service-detail-content,
    .service-details {
        padding: 3rem 2rem;
    }

    .why-text {
        padding: 3rem 2rem;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .thanks-container {
        padding: 3rem 2rem;
    }

    .thanks-container h1 {
        font-size: 2.2rem;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

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

    .section-header-centered h2 {
        font-size: 1.8rem;
    }

    .service-details h3,
    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-price,
    .service-price-display {
        font-size: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}