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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 85vh;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: #f8f8f8;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.story-intro {
    background-color: #fafafa;
    padding: 5rem 2rem;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.problem-section {
    padding: 5rem 2rem;
}

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

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f5;
}

.split-image img {
    width: 100%;
    height: auto;
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.benefit-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
}

.insight-block {
    background-color: #1a1a1a;
    color: #fff;
    padding: 5rem 2rem;
}

.insight-block h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.insight-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.insight-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #3a3a3a;
}

.insight-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.insight-card p {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
}

.testimonial-section {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
}

.testimonial {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #3498db;
    font-style: italic;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #777;
    margin-top: 1rem;
}

.services-preview {
    padding: 5rem 2rem;
}

.services-preview h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #f5f5f5;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.6rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    margin-bottom: 1rem;
}

.price {
    padding: 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.8rem;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: calc(100% - 3rem);
}

.btn-select:hover {
    background-color: #1a252f;
}

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

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.contact-form {
    max-width: 500px;
    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 {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.trust-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.trust-item p {
    color: #666;
}

.disclaimer-section {
    background-color: #fef9e7;
    padding: 3rem 2rem;
    border-top: 2px solid #f7dc6f;
}

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

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

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #27ae60;
    color: #fff;
}

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

.btn-cookie-alt {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.page-hero {
    background-color: #f8f8f8;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

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

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

.value-block {
    margin-bottom: 3rem;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.value-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.team-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: #666;
}

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

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.approach-section > div > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.approach-list {
    list-style: none;
    counter-reset: approach-counter;
    max-width: 800px;
    margin: 0 auto;
}

.approach-list li {
    counter-increment: approach-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.approach-list li:before {
    content: counter(approach-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3498db;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.approach-list li strong {
    color: #3498db;
}

.cta-section {
    background-color: #3498db;
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.services-detail {
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f5;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.detail-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
}

.detail-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.comparison-section {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
}

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

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
    background-color: #2c3e50;
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
    background-color: #f5f5f5;
}

.contact-section {
    padding: 5rem 2rem;
}

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

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

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-block p {
    color: #555;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.contact-note h3 {
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-note p {
    color: #555;
}

.faq-section {
    background-color: #fafafa;
    padding: 5rem 2rem;
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-details {
    margin: 2rem 0;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.next-steps li {
    margin-bottom: 1rem;
}

.thanks-cta {
    margin: 3rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-support {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.thanks-support h3 {
    margin-bottom: 1rem;
}

.legal-page {
    padding: 5rem 2rem;
}

.legal-intro {
    font-style: italic;
    color: #777;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookie-table thead {
    background-color: #f5f5f5;
}

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

    .hero-overlay p {
        font-size: 1.2rem;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

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

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem;
    }
}