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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8fafc;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1e293b;
}

.hero-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

.intro-section {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

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

.intro-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
}

.services-preview {
    background-color: #f8fafc;
    padding: 100px 30px;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.service-image {
    flex: 1;
    background-color: #e2e8f0;
    min-height: 320px;
}

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

.service-info {
    flex: 1;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1e293b;
}

.service-info p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.select-service:hover {
    background-color: #1d4ed8;
}

.method-section {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.method-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
}

.method-steps {
    display: flex;
    gap: 40px;
}

.method-step {
    flex: 1;
    padding: 35px;
    background-color: #f8fafc;
    border-radius: 10px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.method-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e293b;
}

.method-step p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.testimonials-section {
    background-color: #1e293b;
    color: #ffffff;
    padding: 100px 30px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #94a3b8;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e293b;
}

.form-intro p {
    font-size: 17px;
    color: #64748b;
}

.contact-form {
    background-color: #f8fafc;
    padding: 50px;
    border-radius: 12px;
}

.form-field {
    margin-bottom: 25px;
}

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

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-button {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

.disclaimer-section {
    background-color: #fef3c7;
    padding: 50px 30px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #78350f;
}

.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 70px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul a {
    font-size: 15px;
    color: #94a3b8;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
}

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

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

.cookie-banner.show {
    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;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1d4ed8;
}

.cookie-reject {
    background-color: transparent;
    color: #cbd5e1;
    border: 2px solid #475569;
}

.cookie-reject:hover {
    border-color: #cbd5e1;
    color: #ffffff;
}

.about-hero {
    background-color: #f8fafc;
    padding: 100px 30px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-hero-content p {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 30px;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1e293b;
}

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

.story-image {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.values-section {
    background-color: #f8fafc;
    padding: 100px 30px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
}

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

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

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.value-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.team-approach {
    padding: 100px 30px;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.approach-text {
    flex: 1.3;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1e293b;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #475569;
    line-height: 1.8;
}

.cta-section {
    background-color: #2563eb;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-section .cta-button:hover {
    background-color: #f1f5f9;
}

.services-header {
    background-color: #f8fafc;
    padding: 80px 30px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.services-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-detail-content > p {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-detail-list h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-detail-list ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 30px;
}

.service-detail-list ul li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #64748b;
}

.service-pricing-box {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.price-label {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 38px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.comparison-section {
    background-color: #f8fafc;
    padding: 100px 30px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
}

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

.feature-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

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

.feature-item p {
    font-size: 15px;
    color: #64748b;
}

.contact-header {
    background-color: #f8fafc;
    padding: 80px 30px;
    text-align: center;
}

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

.contact-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    padding: 100px 30px;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #334155;
}

.contact-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.contact-note {
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

.faq-section {
    background-color: #f8fafc;
    padding: 100px 30px;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1e293b;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 30px;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #eff6ff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #1e40af;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.button-primary,
.button-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.button-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #1d4ed8;
}

.button-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.button-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1e293b;
}

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

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e293b;
}

.step-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

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

.legal-intro {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #334155;
}

.legal-section p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

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

.legal-section a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .hero-content {
        padding: 60px 30px;
    }

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

    .intro-content,
    .story-container,
    .approach-container,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

    .method-steps,
    .testimonials-grid {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}
