:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

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

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);
}

.hidden {
    display: none;
}

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

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

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

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

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

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

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

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

.hero-visual {
    flex: 1;
    min-height: 500px;
}

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

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.intro-statement {
    display: flex;
    align-items: stretch;
}

.statement-left {
    flex: 0.8;
}

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

.statement-right {
    flex: 1.2;
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.statement-right p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.inline-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.inline-link:hover {
    color: var(--accent-color);
}

.problem-amplifier {
    display: flex;
    padding: 5rem 5%;
    background-color: var(--bg-white);
    gap: 3rem;
}

.amplifier-content {
    flex: 1.5;
}

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

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

.problem-card p {
    color: var(--text-light);
}

.amplifier-visual {
    flex: 1;
}

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

.services-intro-split {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.services-intro-text {
    max-width: 700px;
    margin-bottom: 3rem;
}

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.price {
    display: block;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.insight-section {
    display: flex;
}

.insight-visual {
    flex: 1;
}

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

.insight-content {
    flex: 1;
    padding: 5rem 5%;
}

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

.insight-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonials-flow {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonials-flow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--bg-white);
}

.testimonial-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    display: block;
    font-size: 0.875rem;
    color: var(--bg-light);
}

.trust-builder {
    display: flex;
    align-items: center;
}

.trust-content {
    flex: 1;
    padding: 5rem 5%;
}

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

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

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

.trust-visual {
    flex: 1;
}

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

.how-it-works {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.steps-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.final-cta-section {
    padding: 6rem 5%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.form-section {
    display: flex;
    min-height: 600px;
}

.form-container {
    flex: 1;
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-visual {
    flex: 1;
}

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--bg-light);
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: var(--bg-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

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

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

.sticky-cta button,
.sticky-cta a {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
}

.sticky-cta button:hover,
.sticky-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

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

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

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

.page-hero p {
    font-size: 1.25rem;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-lead {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.service-benefits ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-benefits li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-pricing {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.price-save {
    display: block;
    font-size: 0.875rem;
    color: var(--success-color);
    margin-top: 0.5rem;
}

.services-cta {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

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

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

.about-story {
    display: flex;
    padding: 3rem 5%;
}

.story-content {
    flex: 1.2;
    padding-right: 3rem;
}

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

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

.story-visual {
    flex: 0.8;
}

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

.philosophy-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

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

.philosophy-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.philosophy-card p {
    color: var(--text-light);
}

.team-section {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
}

.team-intro {
    flex: 1;
}

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

.team-intro p {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.team-visual {
    flex: 1;
}

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

.values-split {
    display: flex;
}

.values-left {
    flex: 1;
}

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

.values-right {
    flex: 1;
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.values-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.numbers-section {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.numbers-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.number-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.number-label {
    display: block;
    font-size: 1rem;
    color: var(--bg-light);
}

.about-cta {
    padding: 5rem 5%;
    text-align: center;
}

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

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

.contact-split {
    display: flex;
    padding: 3rem 5%;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-details {
    margin-top: 3rem;
}

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

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

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

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

.contact-map {
    flex: 1;
}

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

.visit-info {
    padding: 3rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.visit-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.visit-info p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-hero {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 5rem 5%;
}

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

.thanks-message {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.service-confirmation {
    font-weight: bold;
    color: var(--secondary-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-visual {
    flex: 1;
}

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

.next-steps {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

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

.step-box {
    flex: 1;
    max-width: 300px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 5%;
}

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

.last-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .hero-split,
    .intro-statement,
    .problem-amplifier,
    .insight-section,
    .trust-builder,
    .about-story,
    .team-section,
    .values-split,
    .contact-split,
    .thanks-hero,
    .form-section {
        flex-direction: column;
    }

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

    .statement-right,
    .insight-content,
    .trust-content,
    .values-right {
        padding: 3rem 5%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem 5%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .steps-container,
    .testimonial-row,
    .stats-grid,
    .numbers-grid,
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .sticky-cta button,
    .sticky-cta a {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

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

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

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

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

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