* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5f7a;
}

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

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

.nav-links a:hover {
    color: #1a5f7a;
}

.ad-label {
    font-size: 0.75rem;
    background-color: #f0f4f8;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    color: #5a6c7d;
    font-weight: 500;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

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

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

.intro-text {
    flex: 1;
}

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

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

.ref-link {
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
}

.ref-link:hover {
    text-decoration: underline;
}

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

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

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

.section-header-centered p {
    font-size: 1.1rem;
    color: #4a5568;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

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

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.service-info {
    flex: 1;
}

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

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

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

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

.trust-section-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 3rem 2rem;
    gap: 4rem;
    background-color: #eef6f9;
}

.trust-left {
    flex: 1;
}

.trust-left h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.trust-left p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.trust-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1rem;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    gap: 4rem;
    background-color: #f7fafc;
}

.form-description {
    flex: 1;
}

.form-description h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

.form-container {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5f7a;
}

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

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

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

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 0.9rem;
    color: #cbd5e0;
    line-height: 1.8;
}

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

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

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

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

.references-list {
    font-size: 0.85rem;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2d3748;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    font-size: 0.85rem;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1400px;
    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-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #1a5f7a;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

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

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

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.15rem;
    color: #4a5568;
}

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

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

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.mission-image {
    flex: 1;
    background-color: #f7f9fb;
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

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

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

.approach-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

.approach-item h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.approach-item p {
    font-size: 1rem;
    color: #4a5568;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.values-left {
    flex: 1;
}

.values-left h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

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

.value-block h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.value-block p {
    font-size: 1rem;
    color: #4a5568;
}

.values-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.stats-box {
    background-color: #1a5f7a;
    padding: 3rem;
    border-radius: 8px;
    width: 100%;
}

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

.stat-item:last-child {
    margin-bottom: 0;
}

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

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

.team-section-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.team-description {
    flex: 1;
}

.team-description h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

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

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

.services-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

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

.services-hero p {
    font-size: 1.15rem;
    color: #4a5568;
}

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

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.service-detail-content {
    flex: 1;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #4a5568;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.comparison-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: #eef6f9;
}

.comparison-section h2 {
    font-size: 2.2rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

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

.comparison-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 260px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.comparison-card h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.comparison-card p {
    font-size: 1rem;
    color: #4a5568;
}

.cta-section-services {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #1a5f7a;
    border-radius: 8px;
}

.cta-section-services h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section-services p {
    font-size: 1.1rem;
    color: #b8dde6;
    margin-bottom: 2rem;
}

.contact-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.15rem;
    color: #4a5568;
}

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

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

.contact-info-side h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact-detail-block {
    margin-bottom: 2rem;
}

.contact-detail-block h3 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.contact-detail-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-map-side {
    flex: 1;
    background-color: #e8f1f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    min-height: 400px;
}

.map-placeholder {
    text-align: center;
    color: #4a5568;
    font-size: 1.1rem;
    padding: 2rem;
}

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

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

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

.thanks-details {
    background-color: #eef6f9;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.legal-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-content ul li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-content a {
    color: #1a5f7a;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card,
    .trust-section-split,
    .form-section-split,
    .about-hero-split,
    .mission-split,
    .values-split,
    .team-section-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .hero-left h1,
    .about-text h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

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

    .approach-item,
    .comparison-card {
        flex: 1 1 100%;
    }
}