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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4caf50;
    color: white;
}

.btn-accept:hover {
    background: #43a047;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: #1565c0;
}

.ad-label {
    font-size: 0.85rem;
    color: #757575;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0d47a1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #424242;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-subtitle a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1565c0;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}

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

.intro-narrative {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.intro-narrative h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0d47a1;
}

.intro-narrative p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    object-fit: cover;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #0d47a1;
    padding-left: 2rem;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 100%;
    height: 200px;
    background-color: #e3f2fd;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center;
}

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

.service-card p {
    color: #616161;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 1rem;
}

.btn-select {
    width: 100%;
    padding: 0.75rem;
    background: #1565c0;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #0d47a1;
}

.trust-builder {
    padding: 5rem 2rem;
    background: #e3f2fd;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.trust-content {
    flex: 1;
    padding: 2rem;
}

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

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trust-content a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-visual {
    flex: 1;
    min-height: 400px;
    background-color: #bbdefb;
    border-radius: 8px;
}

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

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

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d47a1;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #616161;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f5f5f5;
    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: #424242;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #1565c0;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0d47a1;
}

.testimonials {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #1565c0;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #424242;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    text-align: right;
    color: #757575;
    font-style: normal;
    font-weight: 600;
}

.footer {
    background: #263238;
    color: #eceff1;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-col p {
    color: #b0bec5;
    line-height: 1.6;
}

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

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

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

.footer-col a:hover {
    color: #64b5f6;
}

.references {
    padding-left: 1.2rem;
}

.references li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #37474f;
    text-align: center;
    color: #90a4ae;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #e3f2fd;
    padding: 3rem;
    border-radius: 8px;
}

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

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #424242;
    margin-bottom: 2rem;
}

.service-selected {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-selected strong {
    color: #1565c0;
    font-size: 1.3rem;
}

.about-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.about-hero h1 {
    font-size: 3rem;
    color: #0d47a1;
    margin-bottom: 1.5rem;
}

.about-content {
    padding: 4rem 2rem;
}

.about-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #424242;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-height: 350px;
    background-color: #bbdefb;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.team-section {
    padding: 4rem 2rem;
    background: #fafafa;
}

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

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

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #e3f2fd;
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #0d47a1;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #616161;
}

.contact-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.contact-hero h1 {
    font-size: 3rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.contact-layout {
    padding: 4rem 2rem;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    color: #424242;
    margin-bottom: 0.5rem;
}

.info-block p {
    color: #616161;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background-color: #e3f2fd;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.legal-page {
    padding: 5rem 2rem;
}

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

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

.legal-container h2 {
    font-size: 1.8rem;
    color: #0d47a1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p,
.legal-container ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #424242;
    margin-bottom: 1rem;
}

.legal-container ul {
    padding-left: 2rem;
}

.services-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.services-hero h1 {
    font-size: 3rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.services-full {
    padding: 4rem 2rem;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #424242;
    margin-bottom: 1.5rem;
}

.service-info .price {
    margin-bottom: 1.5rem;
}

.service-img {
    flex: 1;
    min-height: 300px;
    background-color: #e3f2fd;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

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

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

    .hero-right {
        min-height: 300px;
    }

    .container-split,
    .about-split,
    .contact-grid,
    .service-detail {
        flex-direction: column;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

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

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

    .section-title-offset {
        padding-left: 0;
    }
}