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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --gray: #7f8c8d;
    --success: #2ecc71;
    --border: #ddd;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #27ae60;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-right a:hover {
    color: var(--accent-color);
}

.hero-split {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 80px 5% 80px 8%;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-visual-right {
    flex: 1;
    height: 80vh;
    overflow: hidden;
}

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

.btn-cta, .btn-cta-large, .btn-inline-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover, .btn-cta-large:hover, .btn-inline-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-cta-large {
    padding: 20px 50px;
    font-size: 18px;
}

.insight-section {
    padding: 100px 5%;
    background: var(--light-bg);
}

.insight-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.insight-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-visual {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
}

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

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

.stat-block p {
    font-size: 16px;
    max-width: 200px;
    margin: 0 auto;
}

.problem-amplify {
    padding: 100px 5%;
}

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

.problem-left {
    flex: 1;
}

.problem-left img {
    border-radius: 8px;
}

.problem-right {
    flex: 1;
}

.problem-right h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid var(--border);
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
}

.problem-conclusion {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.trust-building {
    padding: 100px 5%;
    background: var(--light-bg);
}

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

.trust-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trust-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--gray);
}

.trust-cards {
    display: flex;
    gap: 40px;
}

.trust-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

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

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
}

.services-form-section {
    padding: 100px 5%;
    background: var(--white);
}

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 18px;
    color: var(--gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.service-features span {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-container {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

.form-container.hidden {
    display: none;
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
}

.benefits-reveal {
    padding: 100px 5%;
    background: var(--light-bg);
}

.benefits-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.benefit-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.8;
}

.urgency-section {
    padding: 80px 5%;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.urgency-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-split {
    display: flex;
    min-height: 60vh;
}

.cta-left-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-right-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

.cta-right-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.cta-right-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.footer-column a {
    display: block;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: var(--white);
}

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

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

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

.sticky-btn {
    padding: 16px 30px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-hero {
    padding: 100px 5% 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
}

.about-story {
    padding: 80px 5%;
}

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

.story-text {
    flex: 1.2;
}

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

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 0.8;
}

.story-image img {
    border-radius: 8px;
}

.methodology {
    padding: 100px 5%;
    background: var(--light-bg);
}

.methodology h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.method-cards {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.method-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

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

.method-card p {
    font-size: 16px;
    line-height: 1.7;
}

.team-section {
    padding: 100px 5%;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.philosophy {
    padding: 100px 5%;
    background: var(--light-bg);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.philosophy-lead {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.credentials {
    padding: 100px 5%;
}

.credentials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.credential-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.credential-item p {
    font-size: 16px;
    line-height: 1.7;
}

.cta-simple {
    padding: 80px 5%;
    text-align: center;
    background: var(--light-bg);
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.services-overview {
    padding: 80px 5%;
}

.overview-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.overview-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.overview-intro p {
    font-size: 18px;
    color: var(--gray);
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    position: relative;
}

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

.featured-label {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

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

.service-header h3 {
    font-size: 28px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--gray);
}

.service-details h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-details li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
}

.process-section {
    padding: 100px 5%;
    background: var(--light-bg);
}

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

.process-steps {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
}

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

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

.process-step p {
    font-size: 15px;
    line-height: 1.7;
}

.faq-section {
    padding: 100px 5%;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

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

.modal:not(.hidden) {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--gray);
    cursor: pointer;
}

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

.contact-section {
    padding: 80px 5%;
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

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

.contact-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-quote {
    background: var(--light-bg);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
}

.contact-quote p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.quote-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
}

.response-info {
    padding: 80px 5%;
    background: var(--light-bg);
}

.response-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.response-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.response-item {
    flex: 1;
    text-align: center;
}

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

.response-item p {
    font-size: 16px;
    line-height: 1.7;
}

.thanks-hero {
    padding: 100px 5%;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.thanks-content {
    max-width: 800px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 15px;
}

.thanks-service {
    font-size: 17px;
    color: var(--accent-color);
    font-weight: 600;
}

.next-steps {
    padding: 80px 5%;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.steps-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
}

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

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

.step-item p {
    font-size: 15px;
    line-height: 1.7;
}

.thanks-resources {
    padding: 80px 5%;
    background: var(--light-bg);
    text-align: center;
}

.thanks-resources h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-resources p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--gray);
}

.resources-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thanks-contact {
    padding: 80px 5%;
    text-align: center;
}

.thanks-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-contact p {
    font-size: 17px;
    margin-bottom: 15px;
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
}

.contact-email a {
    color: var(--accent-color);
}

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

.legal-page {
    padding: 80px 5%;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 15px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin: 25px 0 10px;
    color: var(--secondary-color);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 15px 0 15px 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

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

    .hero-content-left {
        padding: 60px 5%;
    }

    .hero-visual-right {
        height: 50vh;
    }

    .split-container,
    .story-container {
        flex-direction: column;
    }

    .trust-cards,
    .method-cards,
    .team-grid,
    .process-steps {
        flex-direction: column;
    }

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

    .benefits-split {
        flex-direction: column;
    }

    .final-cta-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .steps-container,
    .response-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 15px;
    }

    .nav-right {
        gap: 15px;
    }

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

    .hero-lead {
        font-size: 17px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero-content-left h1 {
        font-size: 28px;
    }

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

    h2 {
        font-size: 28px;
    }

    .btn-cta,
    .btn-cta-large {
        padding: 14px 30px;
        font-size: 15px;
    }
}