* {
    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;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.ad-disclosure {
    font-size: 11px;
    color: #64748b;
    background-color: #f1f5f9;
    padding: 4px 12px;
    border-radius: 4px;
    order: 3;
    flex-basis: 100%;
    text-align: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: #475569;
    transition: color 0.3s ease;
}

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

.hero-section {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1e293b;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.7) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: #f8fafc;
    color: #2563eb;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.value-proposition {
    padding: 80px 0;
    background-color: #f8fafc;
}

.value-proposition h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e293b;
    text-align: center;
}

.value-proposition p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #475569;
}

.services-cards {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-cards h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #2563eb;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.card-image {
    height: 240px;
    overflow: hidden;
    background-color: #cbd5e1;
}

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

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.card-body p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #64748b;
    flex: 1;
}

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

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

.select-service:hover {
    background-color: #1e40af;
    transform: scale(1.02);
}

.process-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.process-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.process-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: #e0e7ff;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.process-card p {
    font-size: 15px;
    color: #64748b;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #475569;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

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

.form-wrapper {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.form-wrapper > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #dbeafe;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: none;
    font-weight: 600;
    color: #1e40af;
}

.service-confirmation.active {
    display: block;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

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

.disclaimer-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

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

.footer-col p {
    font-size: 14px;
    color: #cbd5e1;
}

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

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

.footer-col a {
    color: #cbd5e1;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #1e40af;
}

.btn-reject {
    background-color: #475569;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #334155;
}

.page-hero {
    background-color: #1e293b;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #cbd5e1;
}

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

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-intro img {
    flex: 1 1 400px;
    border-radius: 12px;
    background-color: #cbd5e1;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #475569;
}

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

.about-values h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

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

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

.about-approach,
.about-team {
    margin-bottom: 60px;
}

.about-approach h2,
.about-team h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1e293b;
}

.about-approach p,
.about-team p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #475569;
}

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

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

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-text {
    flex: 1 1 450px;
}

.service-detail-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-detail-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #475569;
}

.service-detail-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-text li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #64748b;
}

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

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

.select-service-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

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

.service-detail-image img {
    border-radius: 12px;
    width: 100%;
    background-color: #cbd5e1;
}

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

.services-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #64748b;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e293b;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #334155;
}

.info-block p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2563eb;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: #64748b;
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.contact-image {
    flex: 1 1 400px;
}

.contact-image img {
    border-radius: 12px;
    width: 100%;
    background-color: #cbd5e1;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8fafc;
}

.thanks-content {
    text-align: center;
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 72px;
    color: #10b981;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.thanks-message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
}

.service-info {
    margin: 30px 0;
}

.selected-service-info {
    background-color: #dbeafe;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    color: #1e40af;
}

.thanks-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 15px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #f8fafc;
    color: #2563eb;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

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

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #334155;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #475569;
}

.legal-page p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #64748b;
    line-height: 1.8;
}

.legal-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.legal-table thead {
    background-color: #f1f5f9;
}

.legal-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #334155;
    border-bottom: 2px solid #cbd5e1;
}

.legal-table td {
    padding: 15px;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.legal-date {
    margin-top: 40px;
    font-weight: 600;
    color: #475569;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

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

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .ad-disclosure {
        order: 0;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .process-card {
        flex: 1 1 100%;
    }

    .form-wrapper {
        padding: 40px 30px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
