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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e8a33e;
    --accent-color: #c74242;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    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;
    cursor: pointer;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(199, 66, 66, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 66, 66, 0.4);
}

.hero-scroll {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3f54 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-overlay h1 {
    color: var(--white);
    font-size: 56px;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.2;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 36px;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.story-intro {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

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

.opening-line {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.narrow-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.emphasis-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
}

.problem-amplify {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-light);
}

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

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insight-reveal {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.centered-block {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.insight-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--text-light);
}

.insight-card {
    background-color: var(--white);
    padding: 40px;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.social-proof {
    padding: 100px 20px;
    background-color: var(--primary-color);
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.quote {
    font-size: 20px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

.transformation-story {
    padding: 100px 20px;
    background-color: var(--white);
}

.standout-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 40px;
    text-align: center;
}

.benefit-cascade {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

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

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-bridge {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cta-btn.final {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 20px;
    padding: 20px 50px;
}

.how-it-works {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.steps-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
}

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

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.trust-block {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.trust-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-reveal {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.pricing-intro h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-intro p {
    font-size: 20px;
    color: var(--text-light);
}

.pricing-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(232, 163, 62, 0.2);
}

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

.service-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 60px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-light);
}

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

.select-service {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #234a5f;
    transform: translateY(-2px);
}

.urgency-element {
    padding: 60px 20px;
    background-color: var(--accent-color);
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.urgency-box p {
    font-size: 18px;
}

.spots-remaining {
    font-weight: 800;
    font-size: 24px;
}

.final-push {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.final-emphasis {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 40px 0;
}

.faq-section {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.faq-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3f54 100%);
}

.final-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.final-cta-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.final-cta-box p {
    font-size: 20px;
    margin-bottom: 40px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.selected-service-display,
.selected-price-display {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-light);
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #234a5f;
    transform: translateY(-2px);
}

.site-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3f54 100%);
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-origin h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

.philosophy-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.approach-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.approach-container > p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.difference-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.difference-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.mission-statement {
    padding: 80px 20px;
    background-color: var(--primary-color);
}

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

.mission-box h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 30px;
}

.mission-text {
    color: var(--white);
    font-size: 22px;
    line-height: 1.8;
    font-weight: 300;
}

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

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

.values-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.value h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

.services-intro h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.popular-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 28px;
    color: var(--text-dark);
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-details {
    margin-bottom: 25px;
}

.service-details h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-details ul {
    list-style: none;
}

.service-details ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-light);
}

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-ideal {
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 6px;
}

.service-ideal h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-ideal p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.guarantee-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.guarantee-box h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.guarantee-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.comparison-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.comparison-container > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-option {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.guide-option h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.guide-option p {
    font-size: 16px;
    color: var(--text-light);
}

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

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

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

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

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

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

.reasons-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.reason-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.response-promise {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.promise-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.promise-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.promise-box p {
    font-size: 18px;
    line-height: 1.8;
}

.faq-quick {
    padding: 80px 20px;
    background-color: var(--white);
}

.thanks-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #1e7e34 100%);
    text-align: center;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    font-weight: 700;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    color: var(--white);
    font-size: 56px;
    margin-bottom: 20px;
}

.thanks-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
}

.thanks-details {
    padding: 80px 20px;
    background-color: var(--white);
}

.thanks-details h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.next-step {
    padding: 35px;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.next-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.next-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.thanks-cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: var(--light-bg);
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    font-size: 14px;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

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

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

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

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
    }

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

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

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

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

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

    .values-list {
        flex-direction: column;
    }

    .value {
        flex: 1 1 100%;
    }

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

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

    .legal-container {
        padding: 40px 30px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 28px;
    }

    .centered-block h2,
    .page-hero h1 {
        font-size: 32px;
    }

    .pricing-intro h2 {
        font-size: 36px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}