/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #1a3d52;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success-color: #28a745;
    --border-color: #e1e8ed;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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);
    overflow-x: hidden;
}

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

/* Navigation */
.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

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

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

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

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

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

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

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

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

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

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

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

.btn-submit,
.btn-service {
    background-color: var(--accent-color);
    color: var(--bg-white);
    width: 100%;
}

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

/* Intro Asymmetric Section */
.intro-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-text-block {
    flex: 1.5;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.intro-visual {
    flex: 1;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Problem Section - Split Screen */
.problem-section {
    background-color: var(--bg-light);
    padding: 7rem 2rem;
}

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

.problem-image {
    flex: 1;
}

.problem-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.problem-summary {
    font-size: 1.15rem;
    color: var(--text-light);
    font-style: italic;
}

/* Approach Section */
.approach-section {
    padding: 7rem 2rem;
    background-color: var(--bg-white);
}

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

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

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

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

.approach-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.approach-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Services Intro - Split */
.services-intro {
    padding: 7rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

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

.services-content {
    flex: 1;
}

.services-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.link-arrow {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(10px);
}

.services-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-mini-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-mini-card h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

/* Testimonial Section */
.testimonial-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote:before {
    content: '"';
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: -1rem;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Trust Section - Split */
.trust-section {
    padding: 7rem 2rem;
    background-color: var(--bg-white);
}

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

.trust-text {
    flex: 1;
}

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

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

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

.trust-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.trust-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* CTA Form Section */
.cta-form-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
}

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

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

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.main-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

/* Final Push Section */
.final-push {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

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

.final-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background-color: #d67118;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    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-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero-lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Services Main Page */
.services-main {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-header {
    padding: 2.5rem;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.service-body {
    padding: 2.5rem;
}

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

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

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

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

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

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

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

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

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

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

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

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-main {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

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

.contact-block {
    margin-bottom: 3rem;
}

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

.contact-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.map-placeholder 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: 2rem;
    color: var(--bg-white);
}

.map-overlay p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

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

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

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

.service-selected {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.thanks-next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.thanks-additional {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.thanks-additional a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Page */
.story-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.story-content {
    flex: 1;
}

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

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

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.team-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.team-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

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

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

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
}

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

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.stat-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.stat-value {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

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

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

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

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

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

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

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

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

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

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

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

    .nav-menu li {
        padding: 1rem 0;
        width: 100%;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 1.5rem;
    }

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

    .intro-container,
    .content-wrapper,
    .services-split,
    .trust-wrapper,
    .story-split,
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

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

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

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

    .faq-item {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}