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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8ba8;
    --accent-color: #c86a3f;
    --dark-text: #1e2936;
    --light-text: #5a6b7d;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #2d8f5c;
    --error-color: #c84a3f;
}

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

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(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #25764d;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

.nav-menu a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--background-light);
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.cta-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.cta-secondary {
    background: var(--accent-color);
    color: #ffffff;
}

.cta-secondary:hover {
    background: #b35d37;
    transform: translateY(-2px);
}

.cta-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: var(--primary-color);
    color: #ffffff;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

.split-image-left {
    flex: 1;
    min-height: 400px;
}

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

.split-content-right {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--background-white);
}

.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.split-content-right p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.2rem;
}

.benefits-alternate {
    background: var(--background-light);
    padding: 5rem 0;
}

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

.benefit-row.reverse {
    flex-direction: row-reverse;
}

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

.benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.benefit-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.benefit-visual {
    flex: 1;
    min-height: 350px;
}

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

.methodology-section {
    padding: 5rem 2rem;
    background: var(--background-white);
}

.method-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.method-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

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

.method-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.method-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.method-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.services-overview {
    padding: 5rem 2rem;
    background: var(--background-light);
}

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

.services-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.services-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
}

.services-list-split {
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--background-white);
    padding: 2.5rem 3rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 2rem;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

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

.service-price {
    flex-shrink: 0;
}

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

.testimonial-section {
    padding: 5rem 2rem;
    background: var(--background-white);
}

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

.testimonial-image {
    flex: 1;
    min-height: 500px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark-text);
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--light-text);
    font-weight: 600;
}

.data-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: #ffffff;
}

.data-wrapper h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.stats-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.approach-detailed {
    display: flex;
    align-items: center;
}

.approach-left {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--background-light);
}

.approach-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

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

.approach-right {
    flex: 1;
    min-height: 600px;
}

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

.cta-section-split {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 5rem 3rem;
}

.cta-content-left {
    flex: 1;
    padding-right: 3rem;
}

.cta-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content-left p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-action-right {
    flex-shrink: 0;
}

.form-section {
    padding: 5rem 2rem;
    background: var(--background-light);
}

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

.form-intro {
    flex: 1;
}

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

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

.form-wrapper {
    flex: 1;
    background: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.main-footer {
    background: var(--dark-text);
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
    color: #ffffff;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: center;
}

.story-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1;
}

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

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

.story-image {
    flex: 1;
    min-height: 400px;
}

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

.philosophy-split {
    display: flex;
    background: var(--background-light);
    align-items: center;
}

.phil-image {
    flex: 1;
    min-height: 500px;
}

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

.phil-content {
    flex: 1;
    padding: 4rem 3rem;
}

.phil-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

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

.values-section {
    padding: 5rem 2rem;
    background: var(--background-white);
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--background-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.team-approach {
    padding: 5rem 2rem;
    background: var(--background-white);
}

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

.approach-header h2 {
    font-size: 2.8rem;
    color: var(--dark-text);
}

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
}

.step-row {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.step-row.reverse {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    position: relative;
}

.step-num {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.step-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.step-visual {
    flex: 1;
    min-height: 300px;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.commitment-section {
    padding: 5rem 2rem;
    background: var(--background-light);
    text-align: center;
}

.commitment-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

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

.services-detailed {
    padding: 3rem 2rem 5rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.service-header-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    background: var(--background-light);
    gap: 2rem;
    flex-wrap: wrap;
}

.service-title-area h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.service-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
}

.service-price-area {
    text-align: right;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

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

.service-body {
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-description {
    flex: 1;
}

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

.service-description h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--dark-text);
}

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

.service-description ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-text);
}

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

.service-image {
    flex: 1;
    min-height: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-cta {
    padding: 2rem 3rem;
    text-align: center;
    background: var(--background-light);
}

.process-section {
    padding: 5rem 2rem;
    background: var(--background-white);
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--dark-text);
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

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

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.cta-final {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    text-align: center;
    color: #ffffff;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

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

.contact-map {
    flex: 1;
    min-height: 400px;
}

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

.contact-approach {
    padding: 5rem 2rem;
    background: var(--background-light);
}

.contact-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.approach-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.response-info {
    padding: 5rem 2rem;
    background: var(--background-white);
}

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

.response-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

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

.cta-services {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-hero {
    padding: 5rem 2rem;
    background: var(--background-light);
}

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

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

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

.thanks-service-info {
    margin: 2rem 0;
}

.selected-service {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.selected-service h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

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

.thanks-next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    background: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

.step-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.next-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

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

.thanks-resources {
    margin: 3rem 0;
}

.thanks-resources h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.thanks-resources p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.resource-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    padding: 0.8rem 1.5rem;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.thanks-cta {
    margin-top: 3rem;
}

.legal-content {
    padding: 5rem 2rem;
    background: var(--background-white);
}

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

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

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

.legal-container h2 {
    font-size: 2rem;
    margin: 3rem 0 1rem;
    color: var(--dark-text);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark-text);
}

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

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

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

.cookie-table th {
    background: var(--background-light);
    font-weight: 600;
    color: var(--dark-text);
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .benefit-row,
    .philosophy-split,
    .approach-detailed,
    .cta-section-split,
    .form-container-split,
    .testimonial-split,
    .contact-info-split,
    .story-section,
    .step-row,
    .service-body {
        flex-direction: column;
    }

    .benefit-row.reverse,
    .step-row.reverse,
    .service-body.reverse {
        flex-direction: column;
    }

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

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

    .method-card,
    .value-card {
        min-width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .service-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price-area {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .stats-split {
        flex-direction: column;
        gap: 2rem;
    }

    .process-timeline {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}