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

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a7ba7;
    --accent-color: #e8965e;
    --dark-text: #1a202c;
    --light-text: #4a5568;
    --background-light: #f7fafc;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    display: flex;
    min-height: 100vh;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}

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

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.nav-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.main-content {
    margin-left: 240px;
    flex: 1;
    width: calc(100% - 240px);
}

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #d6864f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 150, 94, 0.3);
}

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

.split-container {
    display: flex;
    padding: 0 4rem;
    gap: 4rem;
    align-items: center;
}

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

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

.split-left-content h2,
.split-right-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.split-left-content p,
.split-right-content p {
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.stat-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

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

.benefit-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefit-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
    color: var(--light-text);
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.emphasis-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.section-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.services-showcase {
    padding: 5rem 4rem;
    background-color: var(--white);
}

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

.services-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

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

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--light-text);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.7;
}

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

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

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

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

.trust-badges {
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

.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(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d6864f;
}

.testimonials {
    padding: 5rem 4rem;
    background-color: var(--white);
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-style: italic;
}

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

.final-cta {
    padding: 5rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.cta-content-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #d6864f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background-color: #1a202c;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 4rem 2rem 4rem;
    margin-left: 240px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.875rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 32, 44, 0.98);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    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;
}

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

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

.btn-cookie-accept:hover {
    background-color: #38a169;
}

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

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

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #d6864f;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.about-content,
.mission-section,
.values-section,
.team-approach,
.impact-section,
.cta-section {
    padding: 4rem 0;
}

.values-section {
    background-color: var(--background-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 4rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.process-steps {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 50px;
}

.step-item p {
    margin: 0;
}

.impact-section {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 4rem;
    justify-content: center;
}

.stat-block {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-large {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

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

.guarantee-box {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.guarantee-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-detailed {
    padding: 4rem;
}

.service-detail-card {
    margin-bottom: 3rem;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-split {
    display: flex;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
    padding: 2.5rem;
}

.service-detail-left {
    background-color: var(--background-light);
}

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

.service-tagline {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-top: 2rem;
}

.service-detail-right h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--light-text);
}

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

.contact-info-section {
    padding: 4rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item p {
    line-height: 1.8;
}

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

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

.contact-note {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-section {
    padding: 4rem;
    background-color: var(--background-light);
}

.faq-section 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 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.map-placeholder {
    padding: 4rem;
}

.map-box {
    background-color: var(--background-light);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.map-text {
    font-size: 1.25rem;
    color: var(--light-text);
    font-weight: 600;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

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

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

.service-confirmation {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    text-align: left;
    margin: 2rem 0;
}

.thanks-next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.next-steps-list {
    padding-left: 1.5rem;
    color: var(--light-text);
}

.next-steps-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #d6864f;
}

.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(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.legal-content h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.updated-date {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: var(--light-text);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .site-footer {
        margin-left: 200px;
    }

    .hero-left h1 {
        font-size: 2.75rem;
    }

    .split-container {
        padding: 0 2rem;
        gap: 2rem;
    }

    .services-grid {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar-nav {
        position: relative;
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }

    .nav-brand {
        margin-bottom: 1rem;
    }

    .nav-links {
        display: flex;
        overflow-x: auto;
    }

    .nav-links li {
        white-space: nowrap;
    }

    .nav-footer {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .site-footer {
        margin-left: 0;
    }

    .hero-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        padding: 2rem;
    }

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        padding: 0 1.5rem;
    }

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

    .services-grid {
        padding: 0 1.5rem;
    }

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

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

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

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

    .sticky-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .impact-stats,
    .values-grid,
    .testimonial-grid,
    .faq-grid {
        flex-direction: column;
    }
}