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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero {
    display: flex;
    min-height: 500px;
    background-color: #fff;
    margin-bottom: 40px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1e293b;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 60px 0;
    background-color: #f1f5f9;
}

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

.intro-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.intro-card p {
    color: #64748b;
    font-size: 16px;
}

.services-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
    background-color: #e2e8f0;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

.select-service {
    width: 100%;
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-intro {
    margin-bottom: 40px;
}

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.submit-button {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #1e293b;
    color: #fff;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

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

.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
    margin: 0;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #475569;
    color: #fff;
}

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

.page-header {
    background-color: #1e293b;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #cbd5e1;
}

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1e293b;
}

.about-main h2:first-child {
    margin-top: 0;
}

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

.about-image-section {
    margin: 40px 0;
}

.about-image-section img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

.values-section {
    margin-top: 50px;
}

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

.value-card {
    flex: 1;
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: 8px;
}

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

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

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

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #78350f;
    text-align: center;
    line-height: 1.6;
}

.services-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

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

.service-detail-content p {
    color: #475569;
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: #475569;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.cta-button-large {
    display: inline-block;
    background-color: #fff;
    color: #2563eb;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

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

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

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1e293b;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e293b;
    font-weight: 600;
}

.contact-detail p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.no-link {
    color: #475569;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    background-color: #e2e8f0;
}

.contact-additional {
    max-width: 900px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #1e293b;
}

.contact-additional h2:first-child {
    margin-top: 0;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #fff;
}

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

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

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

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

.thanks-details {
    margin-bottom: 40px;
}

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

.thanks-next-steps {
    margin: 60px 0;
}

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

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

.step-item {
    flex: 1;
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: 8px;
}

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

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

.btn-secondary {
    background-color: #f1f5f9;
    color: #475569;
}

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

.legal-page {
    padding: 60px 0 80px;
    background-color: #fff;
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1e293b;
}

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

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

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

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

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

.legal-page ul li {
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.8;
}

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

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

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

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

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

.cookie-table td {
    color: #475569;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

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

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

    .intro-grid,
    .trust-grid,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

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

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

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

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

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

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

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