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

:root {
    --primary-color: #1a4d7c;
    --secondary-color: #2c6ba8;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c7a89;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
}

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

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: var(--bg-light);
}

.hero-right {
    flex: 1;
    position: relative;
}

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

.hero-text h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.feature-item .icon {
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.problem-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.problem-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
}

.reasons-list {
    list-style: none;
}

.reasons-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.reasons-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header-split {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    align-items: flex-end;
}

.header-left {
    flex: 1;
}

.header-right {
    flex: 1;
}

.section-header-split h2 {
    font-size: 36px;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-header h4 {
    font-size: 22px;
    color: var(--text-dark);
    flex: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.service-link:hover {
    color: var(--primary-color);
    gap: 8px;
}

.trust-section {
    padding: 0;
    background-color: var(--bg-white);
}

.split-layout {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.trust-image {
    flex: 1;
}

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

.trust-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trust-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat span {
    font-size: 14px;
    color: var(--text-light);
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 30px;
}

cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.process-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

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

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.step-connector {
    width: 80px;
    height: 2px;
    background-color: var(--border-color);
    align-self: center;
    margin-top: 30px;
}

.additional-services {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.additional-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-split {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    gap: 30px;
}

.service-content {
    flex: 1;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.testimonial-author strong {
    color: var(--text-dark);
}

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

.form-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    flex: 1;
}

.checkbox-group a {
    color: var(--primary-color);
}

.btn-submit {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.final-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-col a:hover {
    color: white;
}

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

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

.btn-sticky {
    display: block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    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;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

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

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

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

.service-detail-right {
    flex: 1;
    position: relative;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-tag.featured {
    background-color: var(--accent-color);
}

.popular-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 15px;
}

.service-detail-right h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

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

.comparison-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table td:not(:first-child) {
    text-align: center;
    color: var(--text-light);
}

.cta-services {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-services h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-story {
    padding: 0;
}

.story-content {
    flex: 1;
    padding: 60px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

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

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.team-member h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-member span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

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

.stats-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.stats-section h2 {
    font-size: 36px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

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

.expertise-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.expertise-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.expertise-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.partners-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.partners-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.partners-list p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-about {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.contact-split {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.contact-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.response-time {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.response-time h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.contact-map {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

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

.faq-contact h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.alternative-contact {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.alternative-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.alternative-contact p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-hero {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-info {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.thanks-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    gap: 30px;
    text-align: left;
}

.step {
    flex: 1;
}

.step strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

.selected-service {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.selected-service h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.service-note {
    color: var(--text-light);
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-reminder {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-reminder h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-reminder p {
    color: var(--text-light);
}

.contact-reminder a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.additional-info {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.info-grid {
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
}

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

    .hero-left {
        padding: 40px 30px;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .section-header-split {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

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

    .service-card {
        min-width: 100%;
    }

    .stats-row,
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }

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

    .form-row {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .values-grid,
    .team-grid {
        flex-direction: column;
    }

    .next-steps {
        flex-direction: column;
    }

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

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

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

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

@media (max-width: 640px) {
    .hero-text h2 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .section-header-split h2,
    .process-section h2,
    .additional-services h2,
    .values-section h2,
    .team-section h2,
    .stats-section h2 {
        font-size: 28px;
    }

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

    .btn-sticky {
        padding: 12px 20px;
        font-size: 14px;
    }
}
