* {
    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: #2d3748;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
}

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
}

.nav-top {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2d3748;
}

.ad-label {
    background-color: #fed7d7;
    color: #742a2a;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.hero-overlay {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-bg {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-overlay-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.story-narrow {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.story-content {
    font-size: 18px;
    line-height: 1.8;
}

.story-content .opener {
    font-size: 22px;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 24px;
}

.story-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 32px;
    color: #1a202c;
}

.story-content img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
}

.story-content a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
}

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

.insight-block {
    background-color: #f7fafc;
    padding: 80px 20px;
    margin: 60px 0;
}

.insight-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-inner h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.insight-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-col {
    flex: 1;
    min-width: 250px;
}

.insight-col h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3748;
}

.insight-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.visual-comparison {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.comparison-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.comparison-side {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 8px;
    background-color: #f7fafc;
}

.comparison-side.highlighted {
    background-color: #ebf8ff;
    border: 2px solid #3182ce;
}

.comparison-side h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a202c;
}

.comparison-side ul {
    list-style: none;
}

.comparison-side ul li {
    padding: 10px 0;
    font-size: 16px;
    color: #4a5568;
    position: relative;
    padding-left: 28px;
}

.comparison-side ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #3182ce;
    font-size: 20px;
}

.testimonial-inline {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.testimonial-inline blockquote {
    border-left: 4px solid #3182ce;
    padding-left: 30px;
    font-size: 20px;
    font-style: italic;
    color: #2d3748;
    line-height: 1.7;
}

.testimonial-inline footer {
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #718096;
    font-weight: 500;
}

.service-reveal {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.service-intro {
    text-align: center;
    margin-bottom: 60px;
}

.service-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-intro p {
    font-size: 18px;
    color: #4a5568;
}

.service-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    padding: 40px;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 0;
}

.select-service {
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background-color: #2c5282;
}

.cta-section {
    background-color: #edf2f7;
    padding: 80px 20px;
    margin: 80px 0;
}

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

.cta-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.cta-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.order-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #3182ce;
}

.submit-btn {
    width: 100%;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.trust-elements {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.trust-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

.trust-item p {
    font-size: 16px;
    color: #718096;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 20px 20px;
    margin-top: 100px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2d3748;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
}

.references {
    max-width: 1200px;
    margin: 0 auto 30px;
}

.references h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.references ol {
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.7;
}

.references ol li {
    margin-bottom: 8px;
}

.references a {
    color: #63b3ed;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    text-align: center;
    font-size: 14px;
}

.page-header {
    background-color: #edf2f7;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

.subtitle {
    font-size: 20px;
    color: #4a5568;
}

.services-detailed {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-split {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-info h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-info ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-info ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

.service-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 0;
}

.btn-secondary {
    display: inline-block;
    background-color: #4299e1;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #3182ce;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.lead {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.story-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1.2;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.story-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}

.values-section {
    background-color: #f7fafc;
    padding: 80px 20px;
    margin: 60px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.team-approach {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.approach-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a202c;
}

.approach-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4299e1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.approach-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

.approach-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #718096;
}

.mission-statement {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.mission-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.contact-header {
    background-color: #edf2f7;
    padding: 80px 20px 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-header p {
    font-size: 20px;
    color: #4a5568;
}

.contact-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-info-section {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-block {
    flex: 1;
    min-width: 220px;
}

.contact-block h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-block .note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.contact-map {
    margin-top: 40px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #718096;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.thanks-container {
    background-color: #f7fafc;
    padding: 60px 40px;
    border-radius: 12px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #e6fffa;
    border-radius: 6px;
    font-size: 16px;
    color: #234e52;
}

.next-steps {
    text-align: left;
    margin: 40px auto;
    max-width: 600px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-container {
    line-height: 1.7;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a202c;
}

.updated {
    color: #718096;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-container p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #4a5568;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li,
.legal-container ol li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a5568;
}

.legal-container a {
    color: #3182ce;
    text-decoration: underline;
}

.legal-container strong {
    color: #2d3748;
}

@media (max-width: 768px) {
    .hero-overlay-content h1 {
        font-size: 36px;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .ad-label {
        order: -1;
        width: 100%;
        text-align: center;
    }

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

    .comparison-container {
        flex-direction: column;
    }

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

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

    .approach-steps {
        flex-direction: column;
    }

    .contact-info-section {
        flex-direction: column;
    }

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