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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #8B7355;
    --accent-color: #D4A373;
    --dark-color: #1A1A1A;
    --light-color: #F5F5F5;
    --white: #FFFFFF;
    --gray: #666666;
    --border-color: #E0E0E0;
    --max-width: 1400px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #1F4529;
}

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

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

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    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-color: var(--primary-color);
}

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
}

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

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.statement-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.statement-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.statement-left {
    flex: 1;
}

.statement-left h2 {
    font-size: 3rem;
    color: var(--primary-color);
    position: sticky;
    top: 100px;
}

.statement-right {
    flex: 2;
}

.statement-right p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.visual-block {
    background-color: var(--light-color);
}

.split-content {
    display: flex;
}

.content-side {
    flex: 1;
}

.content-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dark-bg {
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.text-block h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.text-block p {
    font-size: 1.1rem;
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.services-intro {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.services-header {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-header p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.btn-select {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1F4529;
}

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

.testimonial-split {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 8px;
}

blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    color: var(--gray);
    font-weight: 600;
}

.process-section {
    padding: 6rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.process-section h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.process-steps {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    padding: 2rem;
    text-align: left;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

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

.step p {
    color: var(--gray);
    line-height: 1.7;
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-intro p {
    font-size: 1.125rem;
    color: var(--gray);
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1F4529;
}

.site-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p {
    color: #CCCCCC;
    line-height: 1.7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.page-hero {
    padding: 4rem 2rem;
    background-color: var(--light-color);
}

.hero-split-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-split-inner .hero-left {
    padding: 2rem;
}

.hero-split-inner .hero-left h1 {
    font-size: 3rem;
}

.hero-split-inner .hero-right {
    border-radius: 8px;
    overflow: hidden;
}

.story-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

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

.values-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 8px;
}

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

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

.team-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

.team-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.team-visual {
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

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

.numbers-section {
    padding: 6rem 2rem;
    background-color: var(--dark-color);
    color: var(--white);
}

.numbers-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.numbers-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.number-item {
    flex: 1;
    text-align: center;
}

.number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.125rem;
    color: #CCCCCC;
}

.cta-section {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
}

.cta-content .cta-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

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

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

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

.page-hero-simple p {
    font-size: 1.25rem;
    color: var(--gray);
}

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

.service-detail-card {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content > p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-color);
}

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

.price-box {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.process-info {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

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

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.timeline-item p {
    color: var(--gray);
    line-height: 1.7;
}

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

.contact-split {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

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

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

.contact-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
}

.visit-info {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.visit-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.visit-content > p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.visit-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.visit-feature {
    flex: 1;
    max-width: 300px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
}

.visit-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.visit-feature p {
    color: var(--gray);
    line-height: 1.6;
}

.faq-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

.faq-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

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

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

.thanks-page {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-selected {
    font-size: 1.125rem;
    color: var(--dark-color);
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.next-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray);
    line-height: 1.7;
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-contact {
    color: var(--gray);
}

.thanks-contact a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

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

.legal-container h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--dark-color);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark-color);
}

.legal-container p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

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

    .statement-left h2 {
        position: static;
    }

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

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

    .process-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-detail-split {
        flex-direction: column;
    }

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

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

    .numbers-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .number-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .hero-text p {
        font-size: 1.125rem;
    }

    .statement-left h2,
    .services-header h2,
    .process-section h2,
    .values-section h2,
    .team-header h2,
    .numbers-section h2,
    .cta-content h2,
    .page-hero-simple h1,
    .process-info h2,
    .faq-section h2,
    .thanks-container h1 {
        font-size: 2rem;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .step {
        flex: 1 1 100%;
    }

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

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

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

    .visit-features {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        gap: 1rem;
    }

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

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

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

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

    .logo {
        font-size: 1.25rem;
    }

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

    .form-container {
        padding: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
    }
}