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

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

.main-nav {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: #4a90e2;
}

.ad-label {
    color: #95a5b8;
    font-size: 0.75rem;
    border: 1px solid #95a5b8;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #64748b;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-split {
    display: flex;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #f1f5f9;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.services-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.service-info {
    flex: 1;
    padding: 3rem;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-visual {
    flex: 1;
    min-height: 400px;
    background-color: #e5e7eb;
}

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

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.btn-select {
    background-color: #10b981;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-split {
    display: flex;
    padding: 5rem 3rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.form-text {
    flex: 1;
    padding-right: 3rem;
}

.form-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.form-text p {
    font-size: 1.05rem;
    color: #4a5568;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-display {
    background-color: #dbeafe;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563eb;
    display: none;
}

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

.service-display p {
    margin: 0;
    font-weight: 600;
    color: #1e40af;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a2332;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.trust-section {
    padding: 5rem 3rem;
    background-color: #1e293b;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-content-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.trust-text {
    flex: 1.5;
}

.trust-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #334155;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e1;
}

.disclaimer-section {
    padding: 3rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.7;
}

.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #94a3b8;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
}

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

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-reject {
    background-color: #64748b;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #f1f5f9;
}

.page-hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #64748b;
}

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

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

.about-content-split {
    display: flex;
    padding: 5rem 3rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    padding-right: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.about-image {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    color: #4a5568;
}

.team-split {
    display: flex;
    padding: 5rem 3rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-image {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.team-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.certifications {
    padding: 5rem 3rem;
    background-color: #f1f5f9;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.cert-list {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.cert-list ul {
    list-style: none;
}

.cert-list ul li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    color: #4a5568;
}

.cert-list ul li:last-child {
    border-bottom: none;
}

.cert-list ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
}

.page-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f1f5f9;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.page-header p {
    font-size: 1.25rem;
    color: #64748b;
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 3rem;
}

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1.5;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

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

.service-detail-image {
    flex: 1;
    min-height: 500px;
    background-color: #e5e7eb;
}

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

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

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

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #64748b;
}

.contact-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f1f5f9;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.contact-header p {
    font-size: 1.25rem;
    color: #64748b;
}

.contact-split {
    display: flex;
    padding: 5rem 3rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.8;
}

.email-display {
    background-color: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-family: monospace;
    display: inline-block;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 8px;
    padding: 3rem;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.map-info p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-additional {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.additional-info-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.info-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.info-visual {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.info-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
    min-height: 500px;
}

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

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

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.thanks-summary {
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.thanks-summary p {
    margin: 0.5rem 0;
    font-weight: 600;
    color: #1e40af;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-update {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

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

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .trust-content-split,
    .page-hero-split,
    .about-content-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .additional-info-split {
        flex-direction: column;
    }

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

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

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

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

    .footer-content-split {
        flex-direction: column;
    }

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