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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

.ad-label {
    background-color: #f0f0f0;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.hero-section {
    margin-top: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 21px;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-section {
    padding: 90px 0;
    background-color: #fafafa;
}

.intro-section h2 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 19px;
    margin-bottom: 28px;
    color: #444;
}

.inline-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 8px;
}

.problem-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.problem-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1.3;
}

.problem-text h2 {
    font-size: 34px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #555;
}

.problem-visual {
    flex: 1;
}

.card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.insight-section {
    padding: 90px 0;
    background-color: #f5f5f5;
}

.insight-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #444;
}

.insight-list {
    list-style: none;
    margin: 36px 0;
    padding: 0;
}

.insight-list li {
    padding: 18px 0 18px 32px;
    position: relative;
    font-size: 18px;
    color: #333;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.trust-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.trust-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.trust-text {
    flex: 1;
    padding-top: 20px;
}

.testimonial {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.benefits-section {
    padding: 90px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.benefits-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #ffffff;
}

.benefits-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #d0d0d0;
}

.services-reveal {
    padding: 110px 0;
    background-color: #f9f9f9;
}

.services-reveal h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #555;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 480px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.service-card.featured {
    border: 3px solid #4a90e2;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 14px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 24px 16px 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin: 24px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #357abd;
}

.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.form-section > .container > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-control[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

textarea.form-control {
    resize: vertical;
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.lead {
    font-size: 20px;
    color: #555;
}

.about-content {
    padding: 80px 0;
}

.about-story {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.story-image {
    width: 45%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.about-approach {
    margin-bottom: 80px;
}

.about-approach h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-approach > p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

.approach-principles {
    display: flex;
    gap: 40px;
}

.principle {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.principle h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.principle p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.about-experience,
.about-philosophy {
    margin-bottom: 60px;
}

.about-experience h2,
.about-philosophy h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-experience p,
.about-philosophy p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background-color: #4a90e2;
    text-align: center;
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #4a90e2;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #4a90e2;
    text-decoration: none;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(74, 144, 226, 0.1);
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.featured-service {
    border: 3px solid #4a90e2;
}

.service-detail-content {
    display: flex;
    gap: 50px;
}

.service-detail-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1.2;
    padding: 50px;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-tagline {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.service-detail-text h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-detail-text ul {
    margin: 16px 0 24px 20px;
}

.service-detail-text li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.service-detail-text > p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 30px 0;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #4a90e2;
}

.service-detail-image {
    flex: 1;
}

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

.services-faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-faq h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.no-link {
    color: #555;
    cursor: text;
}

.contact-note {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-caption {
    font-size: 15px;
    color: #666;
    margin-top: 14px;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 0;
    background-color: #4a90e2;
    text-align: center;
}

.contact-cta h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #ffffff;
}

.contact-cta p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.95;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.service-confirmation h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.selected-service {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.selected-price {
    font-size: 28px;
    color: #4a90e2;
    font-weight: 700;
}

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

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

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

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

.thanks-note {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    margin: 40px 0;
}

.thanks-note p {
    font-size: 15px;
    color: #856404;
    margin: 0;
}

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

.legal-page {
    padding: 60px 0 80px;
}

.legal-date {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.legal-page ul {
    margin: 16px 0 24px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.legal-page a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #357abd;
}

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

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .ad-label {
        display: none;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 17px;
    }

    .intro-section h2,
    .problem-text h2,
    .insight-section h2,
    .benefits-section h2 {
        font-size: 26px;
    }

    .problem-content,
    .trust-card,
    .about-story,
    .approach-principles,
    .service-detail-content,
    .contact-layout {
        flex-direction: column;
    }

    .story-image {
        width: 100%;
    }

    .service-cards {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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