:root {
    --primary-color: #d4a373;
    --secondary-color: #8b5a3c;
    --accent-color: #f5e6d3;
    --dark-color: #2c2c2c;
    --light-color: #ffffff;
    --gray-color: #666666;
    --light-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

.navbar {
    background: var(--light-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.nav-cta {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--secondary-color);
    color: var(--light-color);
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 60px 80px;
    background: var(--accent-color);
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 35px;
}

.hero-right {
    flex: 1;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

.intro-section {
    padding: 100px 0;
    background: var(--light-color);
}

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

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

.btn-select {
    width: 100%;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.why-us-section {
    padding: 100px 0;
    background: var(--light-color);
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--gray-color);
}

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

.testimonials-section {
    padding: 100px 0;
    background: var(--accent-color);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.reservation-section {
    padding: 100px 0;
    background: var(--light-color);
}

.reservation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 50px;
}

.reservation-form {
    max-width: 600px;
    margin: 0 auto;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cta-final {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-large {
    display: inline-block;
    background: var(--light-color);
    color: var(--secondary-color);
    padding: 18px 50px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    color: #cccccc;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    text-align: center;
    color: #999999;
}

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

.sticky-cta a {
    display: block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px 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;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie:first-child {
    background: var(--primary-color);
    color: var(--light-color);
}

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

.btn-cookie.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

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

.page-header {
    background: var(--accent-color);
    padding: 80px 0;
    text-align: center;
}

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

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

.about-story {
    padding: 100px 0;
    background: var(--light-color);
}

.values-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--gray-color);
}

.team-section {
    padding: 100px 0;
    background: var(--light-color);
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.member-image {
    margin-bottom: 20px;
}

.member-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.member-role {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-member p {
    color: var(--gray-color);
}

.philosophy-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    text-align: center;
    color: var(--light-color);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--secondary-color);
}

.service-detail-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    color: var(--gray-color);
    margin-bottom: 8px;
}

.service-detail-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.duration {
    font-style: italic;
    color: var(--gray-color);
    margin-top: 20px;
}

.note {
    font-size: 0.95rem;
    color: var(--gray-color);
    font-style: italic;
    margin-top: 10px;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.packages-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.packages-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    flex: 1;
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.package-card > p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.package-price {
    margin: 25px 0;
}

.old-price {
    display: block;
    color: var(--gray-color);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.savings {
    color: var(--success-color);
    font-weight: 600;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    flex: 1;
    text-align: center;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 10px;
}

.contact-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-icon svg {
    margin: 0 auto;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card p {
    color: var(--gray-color);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.small-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

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

.map-placeholder {
    background: var(--light-color);
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-placeholder p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.contact-how-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.steps-list li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.steps-list li p {
    color: var(--gray-color);
}

.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    color: var(--success-color);
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-section h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.thanks-message {
    margin-bottom: 50px;
}

.lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-summary {
    background: var(--accent-color);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.service-summary p {
    font-size: 1.1rem;
    color: var(--dark-color);
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.thanks-contact {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thanks-contact p {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.tips-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.tips-grid {
    display: flex;
    gap: 30px;
}

.tip-card {
    flex: 1;
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tip-card p {
    color: var(--gray-color);
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

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

.legal-page ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

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

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

.last-updated {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background: var(--accent-color);
}

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

.cookies-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

.cookies-table td {
    color: var(--gray-color);
}

@media (max-width: 1024px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .services-grid .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 30px 0;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-left {
        padding: 40px 30px;
    }

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

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

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

    .packages-grid {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .tips-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .services-grid .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}