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

:root {
    --primary-color: #2563eb;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

.navbar {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    padding: 4rem;
}

.hero-text-content {
    max-width: 600px;
    color: white;
}

.hero-text-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-right {
    background: var(--bg-light);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

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

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

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

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image-side {
    flex: 1;
}

.intro-image-side img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-content-side {
    flex: 1;
}

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

.intro-content-side p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

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

.problem-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.problem-split.reverse {
    flex-direction: row-reverse;
}

.problem-content {
    flex: 1;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.problem-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--error-color);
}

.problem-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.solution-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.solution-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.solution-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.solution-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.solution-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.testimonial-content {
    flex: 1;
    color: white;
}

.testimonial-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
}

.testimonial-block {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-author {
    font-size: 1rem;
    opacity: 0.8;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    border-radius: 12px;
}

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

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

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

.services-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 1.4rem);
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

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

.service-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.service-features li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

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

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

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.form-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.form-info-side p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-container-side {
    flex: 1;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.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(--text-dark);
}

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

.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: white;
    padding: 1.1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

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

.trust-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.trust-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

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

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #059669;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

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

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

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

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.story-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.values-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

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

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

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.team-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.team-member {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
}

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

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

.member-bio {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.approach-content {
    flex: 1;
}

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

.approach-content > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.approach-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.service-detail-card.featured-service {
    border: 3px solid var(--primary-color);
}

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

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

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

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

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

.badge-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-includes ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-includes ul li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.8rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

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

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-dark);
}

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

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
}

.booking-split {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.booking-info p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.booking-benefits ul {
    list-style: none;
    margin-top: 1rem;
}

.booking-benefits ul li {
    padding: 0.6rem 0;
    color: var(--text-dark);
}

.booking-benefits ul li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.8rem;
}

.booking-form {
    flex: 1;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-extra-info {
    margin-top: 2rem;
}

.contact-extra-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-extra-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.faq-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

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

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

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

.thanks-content {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-info {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.next-steps {
    text-align: left;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.next-steps ul li {
    padding: 0.8rem 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

.next-steps ul li:before {
    content: "→ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.8rem;
}

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

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

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

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

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

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

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

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

    .intro-split,
    .problem-split,
    .story-split,
    .approach-split,
    .testimonial-split,
    .form-split,
    .service-detail-split,
    .booking-split,
    .contact-split {
        flex-direction: column;
    }

    .problem-split.reverse {
        flex-direction: column;
    }

    .solution-card,
    .service-card,
    .trust-item,
    .value-card,
    .team-member,
    .faq-item {
        flex: 1 1 100%;
    }

    .services-grid-split {
        flex-direction: column;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-text-content h1 {
        font-size: 2rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    .solution-header h2,
    .services-header-center h2,
    .trust-container h2,
    .values-container h2,
    .team-container h2,
    .faq-container h2,
    .comparison-container h2 {
        font-size: 2.2rem;
    }

    .final-cta-content h2,
    .cta-container h2 {
        font-size: 2rem;
    }

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