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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

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

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

ul {
    list-style: none;
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.cookie-content p {
    text-align: center;
    font-size: 0.9rem;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.btn-cookie:hover {
    transform: translateY(-2px);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 60px;
}

.hero-block-left {
    width: 100%;
    position: relative;
}

.hero-image-wrap {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

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

.hero-block-right {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

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

.title-large {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.accent-line {
    display: block;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.subtitle-hero {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.intro-asymmetric {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.intro-offset-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.intro-image-float {
    width: 100%;
}

.intro-image-float img {
    width: 100%;
    border-radius: 4px;
}

.services-preview {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.section-header-offset {
    margin-bottom: 3rem;
}

.section-header-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

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

.card-body {
    padding: 2rem;
}

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

.card-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

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

.trust-block {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.trust-content-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-icon {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
}

.trust-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.trust-visual img {
    width: 100%;
    border-radius: 8px;
}

.testimonials-float {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

.testimonials-float h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.testimonial-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.cta-block-asymmetric {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.cta-content-offset p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.cta-image-float img {
    width: 100%;
    border-radius: 8px;
}

.form-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.form-container-offset {
    max-width: 600px;
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    color: var(--primary-color);
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

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

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-block a:hover {
    color: var(--accent-color);
}

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

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

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

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

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

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.hero-about-content h1,
.hero-services-content h1,
.hero-contact-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-about-subtitle,
.hero-services-subtitle,
.hero-contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-intro-asymmetric {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.about-intro-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.about-intro-image img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

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

.values-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.team-section-asymmetric {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

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

.team-image-block img {
    width: 100%;
    border-radius: 8px;
}

.team-text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.philosophy-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.philosophy-content-offset h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.philosophy-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.philosophy-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.philosophy-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about-section {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

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

.cta-about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.services-detail-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-detail-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 2rem;
}

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

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

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

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

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.services-cta-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
    text-align: center;
}

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

.services-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-main-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.contact-container-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

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

.contact-detail a {
    color: var(--secondary-color);
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.contact-visual-block {
    width: 100%;
}

.contact-visual-block img {
    width: 100%;
    border-radius: 8px;
}

.contact-caption {
    margin-top: 1rem;
    text-align: center;
}

.contact-caption p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-map-section {
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.map-placeholder {
    height: 400px;
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.contact-faq-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

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

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

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.contact-cta-section {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

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

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

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

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

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

.thanks-submessage {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

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

.thanks-contact-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.thanks-contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.thanks-contact-info a {
    color: var(--secondary-color);
}

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

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

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

.legal-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

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

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    list-style: disc;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .hero-block-left {
        width: 55%;
    }

    .hero-image-wrap {
        height: 100vh;
    }

    .hero-block-right {
        width: 45%;
        padding: 3rem;
    }

    .hero-content-offset {
        transform: translateX(-40px);
    }

    .title-large {
        font-size: 3.5rem;
    }

    .intro-offset-container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .intro-text-block {
        flex: 1;
    }

    .intro-image-float {
        width: 40%;
        transform: translateY(30px);
    }

    .services-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .card-offset-1 {
        transform: translateY(20px);
    }

    .card-offset-3 {
        transform: translateY(-30px);
    }

    .card-offset-4 {
        transform: translateY(30px);
    }

    .card-offset-6 {
        transform: translateY(-20px);
    }

    .trust-content-split {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    .trust-text {
        flex: 1;
    }

    .trust-visual {
        width: 45%;
    }

    .testimonials-container {
        flex-direction: row;
        gap: 2rem;
    }

    .cta-block-asymmetric {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .cta-content-offset {
        flex: 1;
    }

    .cta-image-float {
        width: 40%;
    }

    .form-container-offset {
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-intro-container {
        flex-direction: row;
        align-items: center;
    }

    .about-intro-text {
        flex: 1;
    }

    .about-intro-image {
        width: 45%;
    }

    .values-grid-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 1rem);
    }

    .team-container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .team-image-block {
        width: 50%;
    }

    .team-text-block {
        flex: 1;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

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

    .service-detail-visual {
        width: 45%;
    }

    .service-detail-content {
        flex: 1;
        padding: 3rem;
    }

    .contact-container-asymmetric {
        flex-direction: row;
        gap: 5rem;
    }

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

    .contact-visual-block {
        width: 45%;
    }

    .faq-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        width: calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .services-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(33.333% - 1.33rem);
    }

    .card-offset-2 {
        transform: translateY(40px);
    }

    .card-offset-5 {
        transform: translateY(-40px);
    }
}

@media (max-width: 767px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}