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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-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: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 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;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 90%;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

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

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 5rem;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.4), rgba(151, 188, 98, 0.3));
}

.hero-content-offset {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    z-index: 10;
    width: 55%;
}

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

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

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

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

.intro-block-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    flex: 1.2;
    padding-right: 2rem;
}

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

.intro-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-right {
    flex: 1;
    transform: translateY(-3rem);
}

.intro-right img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.stats-asymmetric {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-1 {
    transform: translateY(-2rem);
}

.stat-2 {
    transform: translateY(1rem);
}

.stat-3 {
    transform: translateY(-1rem);
}

.stat-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(0) scale(1.05);
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
}

.services-preview {
    background: var(--light-color);
    padding: 6rem 2rem;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header-tilted {
    max-width: 1200px;
    margin: 0 auto 4rem;
    transform: skewY(-1deg);
}

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

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

.services-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(1rem);
}

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

.service-offset-2 {
    margin-left: 8%;
}

.service-offset-3 {
    margin-left: 4%;
}

.service-offset-4 {
    margin-left: 12%;
}

.service-offset-5 {
    margin-left: 6%;
}

.service-offset-6 {
    margin-left: 10%;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.service-content {
    flex: 1.5;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

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

.btn-select-service {
    align-self: flex-start;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.form-section-tilted {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.form-container {
    background: var(--white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-0.5deg);
}

.form-header {
    margin-bottom: 3rem;
}

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

.asymmetric-form {
    max-width: 600px;
}

.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: 6px;
    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 {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-1 {
    margin-left: 0;
}

.testimonial-2 {
    margin-left: 15%;
}

.testimonial-3 {
    margin-left: 8%;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial span {
    font-weight: 600;
    color: var(--primary-color);
}

.why-us-offset {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-image {
    flex: 1;
    transform: translateY(2rem);
}

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

.why-content {
    flex: 1.2;
}

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

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

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.cta-sticky-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.cta-sticky {
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.cta-sticky.show {
    display: flex;
}

.cta-sticky span {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.page-hero-tilted {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8rem 2rem 4rem;
    margin-top: 5rem;
    transform: skewY(-2deg);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    transform: skewY(2deg);
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.story-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

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

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    transform: rotate(2deg);
}

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

.values-asymmetric {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
}

.value-1 {
    transform: translateY(-1rem);
}

.value-2 {
    transform: translateY(1rem);
}

.value-3 {
    transform: translateY(-0.5rem);
}

.value-4 {
    transform: translateY(0.5rem);
}

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

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

.team-intro-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-content {
    flex: 1.2;
}

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

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-image {
    flex: 1;
    transform: translateY(-2rem);
}

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

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

.milestones-section h2 {
    max-width: 1200px;
    margin: 0 auto 4rem;
    font-size: 2.5rem;
    text-align: center;
}

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

.milestone {
    background: var(--white);
    padding: 2rem 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.milestone-1 {
    margin-left: 0;
}

.milestone-2 {
    margin-left: 10%;
}

.milestone-3 {
    margin-left: 5%;
}

.milestone-4 {
    margin-left: 15%;
}

.milestone-5 {
    margin-left: 8%;
}

.milestone .year {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 120px;
}

.milestone p {
    font-size: 1.2rem;
}

.philosophy-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    transform: rotate(-2deg);
}

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

.philosophy-content {
    flex: 1.2;
}

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

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-section-tilted {
    background: var(--primary-color);
    padding: 6rem 2rem;
    margin: 6rem 0;
    transform: skewY(-1deg);
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    transform: skewY(1deg);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.services-intro-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.detailed-services {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.service-detail-1 {
    margin-left: 0;
}

.service-detail-2 {
    margin-left: 8%;
}

.service-detail-3 {
    margin-left: 4%;
}

.service-detail-4 {
    margin-left: 12%;
}

.service-detail-5 {
    margin-left: 6%;
}

.service-detail-6 {
    margin-left: 10%;
}

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.additional-services-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.additional-services-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.additional-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
}

.additional-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-item p {
    line-height: 1.6;
}

.contact-info-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.contact-intro {
    margin-bottom: 4rem;
    text-align: center;
}

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

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
}

.contact-card-1 {
    transform: translateY(-1rem);
}

.contact-card-2 {
    transform: translateY(1rem);
}

.contact-card-3 {
    transform: translateY(-0.5rem);
}

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

.contact-card p {
    line-height: 1.8;
}

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

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    font-style: italic;
}

.map-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 2rem;
}

.map-overlay p {
    font-size: 1.5rem;
    font-weight: 600;
}

.visit-info-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.visit-image {
    flex: 1;
    transform: translateY(2rem);
}

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

.visit-content {
    flex: 1.2;
}

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

.visit-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.faq-asymmetric {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.6;
}

.thanks-section {
    max-width: 800px;
    margin: 8rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.service-confirmation p {
    font-size: 1.1rem;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-info-compact {
    max-width: 800px;
    margin: 4rem auto;
    text-align: center;
    padding: 0 2rem;
}

.contact-info-compact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 8rem auto;
    padding: 0 2rem;
}

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

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

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background: var(--light-color);
    font-weight: 600;
}

@media (max-width: 968px) {
    .navbar-floating {
        flex-wrap: wrap;
        top: 1rem;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

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

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

    .hero-visual {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: none;
    }

    .hero-content-offset {
        width: 100%;
    }

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

    .intro-block-offset,
    .why-us-offset,
    .team-intro-offset,
    .philosophy-offset,
    .visit-info-offset,
    .story-content,
    .service-detail {
        flex-direction: column;
    }

    .intro-right,
    .team-image,
    .philosophy-image,
    .visit-image,
    .story-image {
        transform: none;
    }

    .service-card {
        flex-direction: column;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5,
    .service-offset-6,
    .service-detail-1,
    .service-detail-2,
    .service-detail-3,
    .service-detail-4,
    .service-detail-5,
    .service-detail-6,
    .milestone-1,
    .milestone-2,
    .milestone-3,
    .milestone-4,
    .milestone-5,
    .testimonial-2,
    .testimonial-3 {
        margin-left: 0;
    }

    .stat-1,
    .stat-2,
    .stat-3,
    .value-1,
    .value-2,
    .value-3,
    .value-4,
    .contact-card-1,
    .contact-card-2,
    .contact-card-3 {
        transform: none;
    }

    .form-container {
        transform: none;
    }

    .cta-sticky {
        flex-direction: column;
        gap: 1rem;
    }
}
