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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a:hover {
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.cta-large {
    background: var(--accent-color);
    color: white;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

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

.trust-indicators {
    padding: 4rem 0;
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.trust-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-light);
}

.problem-statement {
    padding: 5rem 0;
}

.split-container {
    display: flex;
    gap: 0;
}

.split-left-alt,
.split-right-alt {
    flex: 1;
}

.split-left-alt {
    display: flex;
    align-items: center;
    padding: 4rem;
}

.split-right-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.insight-reveal {
    background: var(--primary-color);
    color: white;
    padding: 5rem 0;
}

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

.insight-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 1.2rem;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-visual {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

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

.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.split-left-testimonial,
.split-right-testimonial {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-label {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

blockquote p {
    margin-bottom: 1.5rem;
}

cite {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.how-it-works {
    padding: 6rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-light);
    -webkit-text-stroke: 2px var(--secondary-color);
    margin-bottom: 1rem;
}

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

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

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

.split-left-benefit,
.split-right-benefit {
    flex: 1;
}

.split-left-benefit {
    display: flex;
    align-items: center;
    padding: 4rem;
}

.split-right-benefit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

.benefit-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.urgency-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

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

.urgency-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.contact-form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-light);
}

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

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

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

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

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

.btn-submit {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

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

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

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

.about-story {
    padding: 5rem 0;
}

.mission-statement {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.values-section {
    padding: 6rem 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

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

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

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

.value-item p {
    color: var(--text-light);
}

.team-approach {
    padding: 5rem 0;
    background: var(--bg-light);
}

.track-record {
    padding: 6rem 0;
}

.track-record h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.stats-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-block {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.stat-block h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-block p {
    color: var(--text-light);
}

.client-types {
    padding: 6rem 0;
    background: var(--bg-light);
}

.client-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.client-types > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.client-type {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.client-type p {
    color: var(--text-light);
}

.commitment-section {
    padding: 5rem 0;
}

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

.commitment-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.commitment-content > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

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

.commitment-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

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

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

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    margin-bottom: 5rem;
}

.service-split {
    display: flex;
    gap: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 3rem;
}

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

.service-description {
    flex: 2;
}

.service-pricing {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-description h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-description h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.price-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-period {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-includes li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.price-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

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

.service-pricing img {
    width: 100%;
    border-radius: 8px;
}

.service-combinations {
    background: var(--bg-light);
    padding: 5rem 0;
}

.service-combinations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-combinations > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.combo-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.combo-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

.service-cta {
    padding: 5rem 0;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 0;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

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

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

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

.hours-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.what-to-expect {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.what-to-expect h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.process-list {
    list-style: none;
    counter-reset: item;
}

.process-list li {
    counter-increment: item;
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--text-light);
}

.process-list li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    background: var(--secondary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

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

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

.resource-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.link-arrow:hover {
    text-decoration: underline;
}

.location-info {
    padding: 5rem 0;
}

.location-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.location-split {
    display: flex;
    gap: 3rem;
}

.location-text {
    flex: 1;
}

.location-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.location-map {
    flex: 1;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-directions {
    margin-top: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

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

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

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

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

.thanks-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
}

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

.success-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.next-steps {
    padding: 5rem 0;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

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

.step-icon {
    background: var(--bg-light);
    color: var(--secondary-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step-item p {
    color: var(--text-light);
}

.while-you-wait {
    background: var(--bg-light);
    padding: 5rem 0;
}

.while-you-wait h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.while-you-wait > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.resource-cards {
    display: flex;
    gap: 2rem;
}

.resource-item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

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

.link-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.urgent-needs {
    padding: 4rem 0;
}

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

.urgent-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.urgent-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.urgent-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.legal-hero {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

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

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

.legal-content {
    padding: 4rem 0;
}

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

.legal-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-text li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .split-container,
    .process-steps,
    .services-layout .service-card,
    .service-split,
    .combo-grid,
    .resource-grid,
    .location-split,
    .faq-grid,
    .steps-grid,
    .resource-cards,
    .footer-grid {
        flex-direction: column;
    }

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

    .section-header h2,
    .insight-content h2,
    .content-block h2 {
        font-size: 1.8rem;
    }

    .split-left,
    .split-left-alt,
    .split-left-benefit {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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