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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c59;
    --accent-color: #8b5e3c;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.header-asymmetric {
    background-color: var(--bg-white);
    padding: 20px 5%;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-block {
    margin-right: 40px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-style: italic;
}

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

.nav-list a {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

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

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

.hero-offset {
    position: relative;
    margin: 0 5% 80px 8%;
    max-width: 1300px;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 200px 0;
    background-color: var(--bg-light);
}

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    background-color: rgba(45, 90, 61, 0.92);
    padding: 40px 50px;
    border-radius: 0 80px 0 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.intro-irregular {
    padding: 100px 5% 80px;
    background-color: var(--bg-light);
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-text-block {
    flex: 1 1 500px;
    padding-left: 40px;
}

.intro-text-block h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.intro-image-offset {
    flex: 1 1 400px;
    margin-top: -60px;
    background-color: var(--bg-white);
}

.intro-image-offset img {
    width: 100%;
    height: 450px;
    border-radius: 0 0 0 120px;
}

.services-asymmetric {
    padding: 120px 5%;
    background-color: var(--bg-white);
}

.services-header-left {
    max-width: 700px;
    margin-bottom: 70px;
    margin-left: 60px;
}

.services-header-left h3 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.services-header-left p {
    font-size: 19px;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 380px;
    max-width: 450px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card.offset-1 {
    margin-top: 30px;
}

.service-card.offset-2 {
    margin-top: -20px;
}

.service-card.offset-3 {
    margin-top: 40px;
}

.service-card.offset-4 {
    margin-top: 10px;
}

.service-card.offset-5 {
    margin-top: -30px;
}

.service-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.service-select {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-select:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.form-section-creative {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 20%;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 0 100px 0 100px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

#selectedServiceDisplay {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 10px;
}

.contact-form-irregular {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

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

.trust-section-overlap {
    padding: 100px 5%;
    background-color: var(--primary-color);
    margin: 0 10% 0 5%;
    border-radius: 0 0 0 150px;
}

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

.trust-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 60px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.testimonials-scattered {
    padding: 120px 5% 100px;
    background-color: var(--bg-white);
}

.testimonials-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 40px 50px;
    border-radius: 16px;
    border-left: 6px solid var(--accent-color);
    max-width: 700px;
}

.testimonial.offset-left {
    align-self: flex-start;
    margin-left: 5%;
}

.testimonial.offset-right {
    align-self: flex-end;
    margin-right: 5%;
}

.testimonial.offset-center {
    align-self: center;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.approach-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1 1 450px;
    background-color: var(--bg-white);
}

.approach-image img {
    width: 100%;
    height: 480px;
    border-radius: 0 120px 0 0;
}

.approach-content {
    flex: 1 1 500px;
    padding-right: 40px;
}

.approach-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.approach-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.approach-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.approach-link:hover {
    background-color: var(--secondary-color);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1 1 250px;
}

.footer-block h4,
.footer-block h5 {
    color: var(--bg-white);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-block p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 24px 5%;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    color: var(--bg-white);
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

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

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

.page-hero-minimal {
    padding: 100px 5% 60px;
    background-color: var(--primary-color);
    text-align: center;
}

.page-hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.about-story-asymmetric {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text-left {
    flex: 1 1 500px;
    padding-right: 40px;
}

.story-text-left h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.story-text-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.story-image-right {
    flex: 1 1 450px;
    background-color: var(--bg-light);
}

.story-image-right img {
    width: 100%;
    height: 450px;
    border-radius: 100px 0 0 0;
}

.vision-offset {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.vision-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.vision-block {
    flex: 1 1 450px;
}

.vision-block h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vision-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.vision-image {
    flex: 1 1 400px;
    margin-top: -40px;
    background-color: var(--bg-white);
}

.vision-image img {
    width: 100%;
    height: 400px;
    border-radius: 0 0 120px 0;
}

.values-irregular {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.values-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 70px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1 1 280px;
    max-width: 350px;
    background-color: var(--bg-light);
    padding: 40px 35px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card.offset {
    margin-top: 30px;
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.approach-detailed {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.approach-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-content-wrapper h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    max-width: 800px;
}

.step-item.offset-right {
    align-self: flex-end;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 80px;
}

.step-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-minimal {
    padding: 100px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.team-minimal h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.team-intro {
    font-size: 19px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-image-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

.team-image-container img {
    width: 100%;
    height: 500px;
    border-radius: 0 150px 0 0;
}

.cta-about {
    padding: 100px 5%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-hero {
    padding: 100px 5% 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.services-hero-content p {
    font-size: 19px;
    color: var(--text-light);
}

.services-detailed-asymmetric {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-card.layout-left {
    flex-direction: row;
}

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

.service-detail-image {
    flex: 1 1 500px;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
}

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

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    margin: 30px 0;
}

.service-features h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

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

.service-features ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
}

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

.service-pricing-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 25px 0;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-action-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-action-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.comparison-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.comparison-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.comparison-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.comparison-column {
    flex: 1 1 400px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
}

.comparison-column h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.comparison-column.traditional h4 {
    color: var(--text-light);
}

.comparison-column.ours h4 {
    color: var(--primary-color);
}

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

.comparison-column ul li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.custom-solutions {
    padding: 100px 5%;
    background-color: var(--primary-color);
    text-align: center;
}

.custom-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.custom-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 35px;
}

.custom-contact-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-hero {
    padding: 100px 5% 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-size: 19px;
    color: var(--text-light);
}

.contact-main-asymmetric {
    padding: 80px 5%;
    background-color: var(--bg-white);
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1 1 450px;
}

.contact-info-block h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-visual {
    flex: 1 1 500px;
    background-color: var(--bg-light);
}

.contact-visual img {
    width: 100%;
    height: 500px;
    border-radius: 0 0 0 100px;
}

.contact-additional {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.additional-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.additional-block {
    flex: 1 1 450px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
}

.additional-block.offset {
    margin-top: 30px;
}

.additional-block h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.additional-block p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-link-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.location-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.location-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 24px;
}

.location-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.location-description p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.location-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

.location-image img {
    width: 100%;
    height: 400px;
    border-radius: 120px 0 0 0;
}

.faq-contact {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.faq-contact h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 45%;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-main {
    padding: 120px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 0 auto 30px;
}

.thanks-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    margin: 20px 0;
}

.service-selected {
    font-size: 17px;
    color: var(--accent-color);
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.steps-list li {
    counter-increment: step-counter;
    padding: 16px 0 16px 50px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

.thanks-explore {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.thanks-explore h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.explore-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.explore-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.explore-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.explore-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.explore-link {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.explore-link:hover {
    background-color: var(--secondary-color);
}

.thanks-testimonial {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.thanks-testimonial blockquote {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 50px 60px;
    border-radius: 16px;
    border-left: 6px solid var(--accent-color);
}

.thanks-testimonial blockquote p {
    font-size: 21px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-testimonial blockquote cite {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.legal-page {
    padding: 80px 5% 100px;
    background-color: var(--bg-white);
}

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

.legal-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-overlay {
        left: 20px;
        bottom: 20px;
        padding: 30px;
    }

    .services-header-left {
        margin-left: 0;
    }

    .intro-wrapper,
    .approach-wrapper,
    .story-wrapper,
    .contact-main-asymmetric {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin: 0 auto;
        padding: 35px;
    }

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

    .nav-floating {
        width: 100%;
        justify-content: center;
    }

    .nav-list {
        width: 100%;
        justify-content: space-around;
        gap: 15px;
    }
}