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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0369a1;
    text-decoration: none;
}

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0369a1;
}

.ad-disclosure {
    padding: 0.4rem 0.8rem;
    background-color: #fef3c7;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #92400e;
    border: 1px solid #fde68a;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #f0f9ff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.hero-content p {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: #cbd5e1;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0369a1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #075985;
}

.benefits-alternating {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.benefit-row {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
    padding: 2rem;
}

.benefit-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.benefit-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.benefit-visual {
    flex: 1;
    background-color: #e0f2fe;
}

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

.services-grid {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.4rem);
    min-width: 320px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 240px;
    overflow: hidden;
    background-color: #f1f5f9;
}

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

.service-card h3 {
    font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #0f172a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.select-service {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.9rem;
    background-color: #0369a1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.form-info p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.2rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #0369a1;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #0369a1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.trust-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0c4a6e;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    padding: 2rem;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #0c4a6e;
}

.trust-item p {
    color: #475569;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: #cbd5e1;
}

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

.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: 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: 2rem;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-accept {
    background-color: #0369a1;
    color: #ffffff;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.story-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: #e0f2fe;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-section > h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #0c4a6e;
}

.values-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.value-block {
    flex: 1;
    padding: 2rem;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

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

.value-image {
    flex: 1;
    background-color: #e0f2fe;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.team-section > p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #475569;
}

.approach-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0c4a6e;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-step {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #e0f2fe;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #bae6fd;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.approach-step p {
    color: #475569;
    line-height: 1.7;
}

.service-detail {
    margin: 0;
}

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

.detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.detail-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.detail-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0369a1;
    margin: 1.5rem 0;
}

.detail-image {
    flex: 1;
    background-color: #cbd5e1;
}

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

.contact-info-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #0c4a6e;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.email-display {
    color: #0369a1;
    font-weight: 500;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
}

.contact-note {
    padding: 2rem;
    background-color: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #0369a1;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0c4a6e;
}

.contact-note p {
    color: #475569;
    line-height: 1.7;
}

.contact-cta {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f0f9ff;
    border-radius: 8px;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0369a1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.thanks-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    display: inline-block;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-weight: 600;
    color: #0369a1;
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.next-steps ul {
    list-style-position: inside;
    color: #475569;
    line-height: 2;
}

.next-steps li {
    padding-left: 1rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #0369a1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #e0f2fe;
    color: #0369a1;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.legal-intro {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f0f9ff;
    border-radius: 6px;
    border-left: 4px solid #0369a1;
}

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

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

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

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #475569;
    line-height: 1.9;
}

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

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #64748b;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cookies-table th {
    background-color: #f0f9ff;
    padding: 0.9rem;
    text-align: left;
    font-weight: 600;
    color: #0c4a6e;
    border-bottom: 2px solid #0369a1;
}

.cookies-table td {
    padding: 0.9rem;
    border-bottom: 1px solid #e5e7eb;
    color: #475569;
}

.cookies-table tr:hover {
    background-color: #f8fafc;
}

@media (max-width: 1024px) {
    .hero-split,
    .benefit-row,
    .story-content,
    .values-split,
    .form-split,
    .detail-split,
    .contact-split {
        flex-direction: column;
    }

    .benefit-row.reverse,
    .values-split.reverse {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .service-card {
        width: 100%;
    }

    .team-stats {
        flex-direction: column;
    }

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

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