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

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

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

.main-nav {
    background-color: #1a2332;
    padding: 1rem 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 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #94a3b8;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

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

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

.nav-link:hover {
    color: #60a5fa;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.hero-content {
    max-width: 500px;
}

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

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

.hero-right {
    flex: 1;
    background-color: #e2e8f0;
}

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

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

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

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

.intro-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1e293b;
}

.intro-section p {
    font-size: 1.125rem;
    text-align: center;
    color: #475569;
    line-height: 1.8;
}

.services-split {
    display: flex;
    gap: 3rem;
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.services-intro-left {
    flex: 0 0 300px;
    padding-top: 2rem;
}

.services-intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.services-intro-left p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.services-cards-right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1e293b;
}

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

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

.service-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: #f1f5f9;
    color: #1e293b;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.service-select.selected {
    background-color: #16a34a;
    color: #ffffff;
    border-color: #16a34a;
}

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

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

.form-left {
    flex: 0 0 350px;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

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

.form-right {
    flex: 1;
}

.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;
    color: #334155;
    font-weight: 500;
}

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

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

.form-group textarea {
    resize: vertical;
}

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

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

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

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

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #94a3b8;
    line-height: 1.6;
}

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

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

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

.footer-column a:hover {
    color: #60a5fa;
}

.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.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #16a34a;
    color: #ffffff;
}

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

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

.cookie-reject:hover {
    border-color: #e2e8f0;
}

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

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.thanks-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

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

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

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

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

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

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.contact-info {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #334155;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #475569;
}

.contact-info strong {
    color: #1e293b;
}

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

.about-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.about-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #475569;
}

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

.services-page h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    text-align: center;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
    }

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

    .services-intro-left {
        flex: none;
    }

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

    .form-split {
        flex-direction: column;
        gap: 2rem;
    }

    .form-left {
        flex: none;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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