* {
    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: #1a202c;
    background-color: #ffffff;
}

.navbar {
    background-color: #0f172a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.nav-ad-label {
    background-color: #fbbf24;
    color: #1a202c;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #10b981;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.hero-image {
    flex: 1;
    background-color: #64748b;
}

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

.cta-button {
    display: inline-block;
    background-color: #10b981;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #10b981;
    color: #10b981;
}

.cta-button.secondary:hover {
    background-color: #10b981;
    color: #ffffff;
}

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

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

.intro-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

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

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #475569;
}

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

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

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

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

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    background-color: #cbd5e1;
    height: 250px;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-info p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.select-service-btn.selected {
    background-color: #10b981;
}

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

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.step p {
    color: #64748b;
}

.process-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

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

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

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

#selectedServiceDisplay {
    font-size: 1.1rem;
    color: #64748b;
}

#selectedServiceDisplay.has-selection {
    color: #10b981;
    font-weight: 600;
}

.contact-form {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.submit-btn:hover:not(:disabled) {
    background-color: #059669;
}

.submit-btn:disabled {
    background-color: #cbd5e1;
    cursor: not-allowed;
}

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

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

.trust-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.trust-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #475569;
}

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

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

.footer-section a:hover {
    color: #10b981;
}

.footer-section p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

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

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

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    color: #e2e8f0;
}

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

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #475569;
}

.about-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.values-split {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 3rem;
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.value-item p {
    color: #64748b;
    line-height: 1.7;
}

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

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

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

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

.team-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #475569;
}

.team-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 4rem;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-split {
    display: flex;
    gap: 0;
}

.service-detail-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.service-detail-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #475569;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

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

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin: 1.5rem 0;
}

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

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

.contact-details {
    margin: 2rem 0;
}

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

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.contact-item p {
    color: #64748b;
    line-height: 1.8;
}

.contact-note {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #10b981;
}

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

.contact-map {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.service-area-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-area-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #475569;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-content > p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-details p {
    color: #475569;
}

.selected-service-info {
    background-color: #dcfce7;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.selected-service-info p {
    color: #166534;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.next-steps {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.next-step {
    flex: 1;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step p {
    color: #64748b;
}

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

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-date {
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

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

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #1e293b;
}

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

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.7;
}

.legal-section a {
    color: #10b981;
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0f172a;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.5rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .process-split,
    .trust-split,
    .about-split,
    .values-split,
    .team-content-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .intro-text h2,
    .process-text h2,
    .trust-text h2,
    .about-text h2,
    .values-text h2 {
        font-size: 2rem;
    }

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

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

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

    .next-steps {
        flex-direction: column;
    }

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