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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

.cookie-accept {
    background: #00d4aa;
    color: #fff;
}

.cookie-accept:hover {
    background: #00b894;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.header-split {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4aa;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00d4aa;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-left {
    flex: 1;
    padding: 4rem 4rem 4rem 6rem;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
}

.stat-label {
    font-size: 0.9rem;
    color: #777;
}

.hero-right {
    flex: 1;
    height: 85vh;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #00d4aa;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #00b894;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,212,170,0.3);
}

.problem-section {
    padding: 5rem 2rem;
    background: #1a1a2e;
    color: #fff;
    text-align: center;
}

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

.problem-section h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #bbb;
}

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

.insight-image {
    flex: 1;
    background: #f1f3f5;
}

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

.insight-content {
    flex: 1;
    padding: 4rem 4rem 4rem 5rem;
    background: #fff;
}

.insight-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

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

.insight-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.insight-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: 700;
}

.insight-highlight {
    background: #fff3cd;
    padding: 1.5rem;
    border-left: 4px solid #ffc107;
    font-size: 1.15rem;
    font-weight: 500;
    color: #856404;
}

.story-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.story-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.story-blocks {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.story-block {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-block h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.story-block p {
    margin-bottom: 1rem;
    color: #555;
}

.story-metric {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4aa;
    margin-top: 1.5rem;
}

.story-arrow {
    font-size: 3rem;
    color: #00d4aa;
    font-weight: 700;
}

.story-conclusion {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 1.5rem;
    background: #d4edda;
    border-radius: 6px;
}

.trust-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.trust-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.trust-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #00d4aa;
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.trust-card p {
    color: #555;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: #1a1a2e;
    color: #fff;
}

.testimonial-inline blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    text-align: center;
    border: none;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #00d4aa;
}

.method-section {
    padding: 5rem 2rem;
    background: #fff;
}

.method-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.method-step:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
    min-width: 80px;
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.benefits-asymmetric {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-large {
    flex: 1 1 100%;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.benefit-large h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-large p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.benefit-small {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-small h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit-small p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.urgency-section {
    padding: 4rem 2rem;
    background: #fff3cd;
    border-top: 5px solid #ffc107;
    border-bottom: 5px solid #ffc107;
}

.urgency-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #856404;
    text-align: center;
}

.urgency-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #856404;
    text-align: center;
}

.urgency-stat {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 5px solid #e74c3c;
}

.urgency-stat strong {
    display: block;
    font-size: 1.4rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.urgency-note {
    font-size: 0.9rem;
    color: #777;
}

.services-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 3px solid #00d4aa;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d4aa;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-desc {
    font-size: 1rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-includes span {
    font-size: 0.95rem;
    color: #555;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-select {
    padding: 1rem 2rem;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: #00d4aa;
    transform: translateY(-2px);
}

.extra-services {
    margin-top: 4rem;
}

.extra-services h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    text-align: center;
}

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

.extra-item {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.extra-item h5 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.extra-item p {
    color: #555;
    margin-bottom: 1rem;
}

.extra-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4aa;
}

.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

.form-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4aa;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: #00d4aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #00b894;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #bbb;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #00d4aa;
    color: #fff;
}

.main-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #00d4aa;
}

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

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #00d4aa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #777;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

    .hero-right {
        height: 400px;
    }

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

    .insight-content {
        padding: 3rem 2rem;
    }

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

    .service-card.featured {
        transform: scale(1);
    }

    .story-blocks {
        flex-direction: column;
    }

    .story-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

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

/* Additional page styles */

.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* About page styles */

.about-story {
    padding: 5rem 2rem;
    background: #fff;
}

.story-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.story-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mission-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.mission-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.mission-highlight {
    background: #fff;
    padding: 2rem;
    border-left: 5px solid #00d4aa;
    margin-top: 2rem;
    border-radius: 4px;
}

.mission-highlight strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.values-section {
    padding: 5rem 2rem;
    background: #fff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.value-card p {
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.team-roles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #00d4aa;
}

.role-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.role-item p {
    color: #555;
    line-height: 1.7;
}

.results-section {
    padding: 5rem 2rem;
    background: #1a1a2e;
    color: #fff;
}

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

.results-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 0.5rem;
}

.stat-desc {
    display: block;
    font-size: 1rem;
    color: #bbb;
}

.cta-about {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.cta-about p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Services page styles */

.services-detailed {
    padding: 5rem 2rem;
    background: #fff;
}

.services-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.service-detail-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.service-detail-card.featured-detail {
    border: 3px solid #00d4aa;
    background: #fff;
}

.badge-large {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d4aa;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.service-tagline {
    font-size: 1.1rem;
    color: #777;
    margin-top: 0.5rem;
}

.service-detail-price {
    text-align: right;
    white-space: nowrap;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
    display: block;
}

.price-period {
    font-size: 1rem;
    color: #777;
}

.service-detail-body {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.service-col {
    flex: 1;
}

.service-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: 700;
}

.service-timing {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-detail-footer {
    text-align: center;
}

.oneoff-services {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.oneoff-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.oneoff-card {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.oneoff-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.oneoff-desc {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.oneoff-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.oneoff-includes ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.oneoff-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.oneoff-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00d4aa;
}

.oneoff-price {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 0.5rem;
}

.oneoff-time {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.faq-services {
    padding: 5rem 2rem;
    background: #fff;
}

.faq-services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #00d4aa;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.cta-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #bbb;
}

.cta-buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact page styles */

.contact-main {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

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

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.contact-details a {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-details p {
    color: #555;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.contact-box p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.cta-box {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: #00d4aa;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-box:hover {
    background: #00b894;
}

.contact-faq {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.contact-cta {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Thanks page styles */

.thanks-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #fff;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.2);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-details {
    padding: 5rem 2rem;
    background: #fff;
}

.thanks-info-box {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info-box h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a2e;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.thanks-step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4aa;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}

.thanks-step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.thanks-step-content p {
    color: #555;
    line-height: 1.7;
}

.thanks-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    display: none;
}

.thanks-note p {
    margin-bottom: 0.5rem;
    color: #856404;
}

.thanks-resources {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.thanks-link-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.thanks-link-card:hover {
    border-color: #00d4aa;
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thanks-link-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.thanks-link-card p {
    color: #555;
}

.thanks-final {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.thanks-final h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.thanks-final a {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
}

.thanks-final a:hover {
    text-decoration: underline;
}

/* Legal pages styles */

.legal-content {
    padding: 4rem 2rem;
    background: #fff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-date {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00d4aa;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: #555;
}

.legal-section a {
    color: #00d4aa;
    text-decoration: none;
}

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

.legal-section strong {
    color: #1a1a2e;
}

/* Responsive adjustments */

@media (max-width: 1024px) {
    .story-split {
        flex-direction: column;
    }

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

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

    .service-detail-price {
        text-align: left;
    }

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

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

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

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

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

    .results-stats {
        flex-direction: column;
    }

    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}