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

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

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

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

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

h1 {
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 0.6em;
    font-weight: 700;
}

h2 {
    font-size: 2.2em;
    line-height: 1.3;
    margin-bottom: 0.8em;
    font-weight: 700;
}

h3 {
    font-size: 1.6em;
    line-height: 1.4;
    margin-bottom: 0.6em;
    font-weight: 600;
}

h4 {
    font-size: 1.2em;
    line-height: 1.4;
    margin-bottom: 0.5em;
    font-weight: 600;
}

h5 {
    font-size: 1.1em;
    line-height: 1.4;
    margin-bottom: 0.5em;
    font-weight: 600;
}

p {
    margin-bottom: 1.2em;
}

ul, ol {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.5em;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2em;
    margin: 0;
    padding: 0;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 550px;
}

.hero-subtext {
    font-size: 1.15em;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2em;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #229954;
    color: var(--bg-white);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #1a252f;
    color: var(--bg-white);
    transform: translateY(-2px);
}

.cta-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.insight-block {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.insight-block h2 {
    font-size: 2em;
    margin-bottom: 1em;
    color: var(--primary-color);
}

.insight-block p {
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
}

.visual-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.problem-amplify {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    flex: 1 1 300px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-card h4 {
    color: var(--accent-color);
    margin-bottom: 1em;
}

.storytelling-flow {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
}

.story-intro {
    margin-bottom: 50px;
}

.story-intro h2 {
    margin-bottom: 0.5em;
}

.story-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3em;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.trust-elements {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.trust-elements h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1 1 300px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.testimonial p {
    margin-bottom: 1.5em;
    font-size: 1.05em;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95em;
}

.services-intro {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.services-lead {
    font-size: 1.15em;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 350px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    position: relative;
    border-color: var(--secondary-color);
    background-color: #f8fff9;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.service-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 0.8em;
    font-size: 1.4em;
}

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

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

.select-service-btn {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.select-service-btn:hover {
    background-color: #229954;
}

.form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
    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(--secondary-color);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.urgency-block {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.urgency-block h3 {
    color: var(--bg-white);
}

.urgency-block p {
    color: rgba(255,255,255,0.9);
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.benefits-reveal h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-item {
    flex: 1 1 200px;
    text-align: center;
}

.benefit-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3em;
}

.benefit-item p {
    font-size: 0.95em;
    color: var(--text-light);
}

.final-cta-sticky {
    position: sticky;
    bottom: 0;
    z-index: 900;
}

.sticky-bar {
    background-color: var(--primary-color);
    padding: 15px 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
}

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

.sticky-text {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1em;
}

.btn-sticky {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-sticky:hover {
    background-color: #229954;
    color: var(--bg-white);
}

.main-footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6em;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 15px 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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.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-header {
    padding: 80px 20px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.lead-text {
    font-size: 1.2em;
    color: var(--text-light);
    line-height: 1.7;
}

.about-story {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1 1 220px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8em;
}

.team-approach {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.credentials {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.credentials h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.project-item {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.project-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8em;
}

.expertise-areas {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.expertise-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 1em;
}

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

.why-us {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.services-detailed {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 50px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-card.featured-service {
    position: relative;
    border-color: var(--secondary-color);
}

.featured-label {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    text-align: center;
    font-weight: 600;
}

.service-detail-header {
    background-color: var(--bg-light);
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    margin: 0;
}

.price-tag {
    font-size: 2em;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-body {
    padding: 35px;
}

.service-intro {
    font-size: 1.15em;
    color: var(--text-light);
    margin-bottom: 2em;
}

.service-features {
    margin-bottom: 2em;
}

.service-features li {
    margin-bottom: 0.8em;
}

.comparison-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.guide-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.guide-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8em;
}

.cta-services {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-services h2 {
    color: var(--bg-white);
}

.cta-services p {
    color: rgba(255,255,255,0.9);
}

.contact-info-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

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

.contact-map {
    flex: 1;
}

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

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.info-item .note {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: italic;
}

.map-placeholder {
    margin-bottom: 15px;
}

.map-caption {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: italic;
}

.faq-contact {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8em;
}

.visit-info {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.partners-note {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.legal-intro {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 2em;
}

.legal-page h2 {
    margin-top: 2em;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 1.5em;
    color: var(--primary-color);
}

.warning-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 1.5em 0;
}

.thanks-hero {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.success-icon {
    margin: 0 auto 30px;
}

.thanks-lead {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

.service-confirmation {
    margin-top: 30px;
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 50px;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-step {
    display: flex;
    gap: 25px;
}

.step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3em;
}

.timeline-step .step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.thanks-resources {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.thanks-resources h2 {
    text-align: center;
    margin-bottom: 50px;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    flex: 1 1 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8em;
}

.urgent-contact {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.urgent-contact h3 {
    color: var(--bg-white);
}

.urgent-contact p {
    color: rgba(255,255,255,0.9);
}

.urgent-contact a {
    color: var(--bg-white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-left,
    .hero-right {
        padding: 40px 20px;
    }

    .split-section-reverse,
    .split-layout {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }

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

    .sticky-content {
        justify-content: center;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .problem-grid,
    .testimonials-layout,
    .services-grid,
    .benefits-split {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}
