:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --secondary-color: #1e293b;
    --accent-color: #f59e0b;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

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

a:hover {
    color: var(--primary-dark);
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

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

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

.hero-offset {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    gap: 5rem;
}

.hero-text-block {
    flex: 1;
    padding-left: 3rem;
}

.hero-text-block h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
}

.hero-visual-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.intro-asymmetric {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.intro-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 15%;
}

.intro-main {
    margin-left: 8%;
    max-width: 900px;
}

.intro-main h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-main p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.services-preview {
    padding: 8rem 5% 6rem;
}

.services-header-offset {
    margin-left: 10%;
    margin-bottom: 4rem;
}

.services-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.service-card.card-1 {
    margin-top: 2rem;
}

.service-card.card-3 {
    margin-top: -3rem;
}

.service-card.card-4 {
    margin-top: 1.5rem;
}

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

.service-content {
    padding: 2rem;
}

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

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

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

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

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

.services-link-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.link-inline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.trust-block-offset {
    padding: 5rem 5%;
    background: var(--secondary-color);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.trust-content {
    transform: skewY(2deg);
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-stat {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.testimonial-asymmetric {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.testimonial-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.testimonial-quote {
    flex: 1.2;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    position: relative;
    margin-left: 5%;
}

.testimonial-quote p {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-image {
    flex: 1;
    transform: translateY(-40px);
}

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

.approach-section {
    padding: 7rem 5%;
}

.approach-grid {
    display: flex;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.approach-text {
    flex: 1;
    padding-right: 2rem;
}

.approach-text h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.cta-section-inline {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    margin: 4rem 0;
}

.cta-inline-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-inline-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-inline-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.benefits-offset {
    padding: 7rem 5%;
    background: var(--bg-white);
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.benefits-list {
    display: flex;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1 1 300px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.benefit-item:nth-child(2) {
    transform: translateY(30px);
}

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.form-section-asymmetric {
    padding: 7rem 5%;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-left: 10%;
}

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

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

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

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-asymmetric {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

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

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

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

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

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

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    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;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: var(--primary-dark);
}

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

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

.page-header-offset {
    margin-top: 80px;
    padding: 5rem 5% 3rem;
    background: var(--bg-light);
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 8%;
}

.page-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.page-header-content h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
}

.story-section {
    padding: 6rem 5%;
}

.story-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

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

.story-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.value-card:nth-child(2) {
    transform: translateY(30px);
}

.value-card:nth-child(3) {
    transform: translateY(-20px);
}

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

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

.team-section-offset {
    padding: 6rem 5%;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-grid {
    display: flex;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.team-member:nth-child(2) {
    transform: translateY(-30px);
}

.team-photo {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
}

.team-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

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

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.7;
}

.mission-asymmetric {
    padding: 6rem 5%;
    background: var(--secondary-color);
    color: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 15%;
}

.mission-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background: var(--bg-light);
}

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-full {
    padding: 4rem 5%;
}

.service-detail {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto 6rem;
    align-items: center;
}

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

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

.service-detail-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

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

.service-pricing-block {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.services-cta {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-medium);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-content-split {
    padding: 4rem 5%;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

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

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

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

.contact-note p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.contact-map-placeholder img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-reasons {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.contact-reasons h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.reasons-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.reason-item {
    flex: 1 1 300px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.reason-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.contact-faq {
    padding: 5rem 5%;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

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

.thanks-section {
    margin-top: 80px;
    padding: 5rem 5%;
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.thanks-service-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thanks-service-info p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    margin: 4rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.step-text h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

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

.thanks-additional {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-additional p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.email-link {
    font-size: 1.1rem;
    font-weight: 600;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 5%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-page h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.7rem;
    font-weight: 600;
}

.legal-page p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.legal-page a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

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

.cookie-table td {
    color: var(--text-medium);
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-link {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text-block {
        padding-left: 0;
    }

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

    .approach-grid,
    .story-wrapper,
    .testimonial-wrapper,
    .service-detail {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .intro-main h2,
    .services-header-offset h2 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem;
        margin-left: 0;
    }

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

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

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

    .service-card.card-1,
    .service-card.card-3,
    .service-card.card-4 {
        margin-top: 0;
    }

    .benefit-item:nth-child(2) {
        transform: translateY(0);
    }

    .team-member:nth-child(2) {
        transform: translateY(0);
    }

    .value-card:nth-child(2),
    .value-card:nth-child(3) {
        transform: translateY(0);
    }

    .testimonial-wrapper {
        flex-direction: column-reverse;
    }

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

    .testimonial-image {
        transform: translateY(0);
    }
}
