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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    border-bottom: 1px solid #dee2e6;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.main-nav {
    display: flex;
    gap: 32px;
}

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

.main-nav a:hover {
    color: #2b6cb0;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    background-color: #f7fafc;
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.split-intro {
    display: flex;
    padding: 80px 48px;
}

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

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

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

.intro-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 16px;
}

.benefits-grid {
    padding: 80px 48px;
    background-color: #f7fafc;
}

.benefits-grid h3 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 56px;
    color: #1a202c;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
}

.trust-section {
    display: flex;
    padding: 80px 48px;
}

.trust-content {
    flex: 1;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: #1a202c;
}

.testimonial-inline {
    background-color: #f7fafc;
    padding: 24px;
    margin-bottom: 24px;
    border-left: 4px solid #2b6cb0;
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 1.05rem;
    color: #2d3748;
    font-style: italic;
}

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

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

.services-overview {
    padding: 80px 48px;
    background-color: #ffffff;
}

.services-overview h3 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 24px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 720px;
    margin: 0 auto 56px;
}

.services-split {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    background-color: #f7fafc;
    padding: 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background-color: #edf2f7;
    border-color: #2b6cb0;
}

.service-item h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-item p {
    color: #4a5568;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2b6cb0;
}

.form-container {
    flex: 1;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.form-container h4 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #718096;
}

.final-cta {
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1400&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 32, 44, 0.75);
}

.cta-overlay {
    position: relative;
    text-align: center;
    color: #ffffff;
    max-width: 720px;
    padding: 48px 32px;
}

.cta-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-overlay p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ffffff;
    color: #2b6cb0;
}

.main-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 64px 48px 24px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #cbd5e0;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footer-disclaimer {
    background-color: #2d3748;
    padding: 24px;
    border-radius: 6px;
    margin: 0 auto 32px;
    max-width: 1200px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 16px 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: 24px;
}

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

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

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

.page-hero {
    background-color: #f7fafc;
    padding: 80px 48px;
    text-align: center;
}

.page-hero h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.25rem;
    color: #4a5568;
}

.about-split {
    display: flex;
    padding: 80px 48px;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.values-section {
    padding: 80px 48px;
    background-color: #f7fafc;
}

.values-section h3 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 56px;
    color: #1a202c;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h4 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team-intro {
    display: flex;
    padding: 80px 48px;
}

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

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

.team-text {
    flex: 1;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.team-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.impact-numbers {
    padding: 80px 48px;
    background-color: #2b6cb0;
    color: #ffffff;
}

.impact-numbers h3 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 56px;
}

.numbers-container {
    display: flex;
    justify-content: space-around;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.number-item {
    text-align: center;
}

.big-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.number-item p {
    font-size: 1.05rem;
    color: #e6f2ff;
}

.final-about-cta {
    padding: 80px 48px;
    text-align: center;
    background-color: #f7fafc;
}

.final-about-cta h3 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: #1a202c;
}

.final-about-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 48px;
}

.service-block {
    display: flex;
    margin-bottom: 64px;
    gap: 48px;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 48px;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    color: #2d3748;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.service-price {
    margin-top: auto;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
}

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

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

.services-cta {
    padding: 80px 48px;
    text-align: center;
    background-color: #f7fafc;
}

.services-cta h3 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: #1a202c;
}

.services-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 32px;
}

.contact-layout {
    display: flex;
    padding: 80px 48px;
    gap: 48px;
}

.contact-info {
    flex: 1;
    padding: 32px 48px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a202c;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #e2e8f0;
}

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

.map-caption {
    background-color: #f7fafc;
    padding: 24px;
}

.map-caption p {
    font-size: 0.95rem;
    color: #4a5568;
}

.contact-additional {
    padding: 80px 48px;
    background-color: #f7fafc;
}

.contact-additional h3 {
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
    color: #1a202c;
}

.additional-content {
    max-width: 800px;
    margin: 0 auto;
}

.additional-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.additional-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.additional-content li {
    margin-bottom: 12px;
    color: #2d3748;
    line-height: 1.7;
}

.thanks-container {
    display: flex;
    padding: 80px 48px;
    gap: 48px;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 64px;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.thanks-info {
    background-color: #f7fafc;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.thanks-info ol {
    padding-left: 24px;
}

.thanks-info li {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-service {
    margin-bottom: 32px;
}

.thanks-service p {
    font-size: 1.1rem;
    color: #2d3748;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2b6cb0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 48px;
}

.legal-page h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-intro {
    font-size: 1.05rem;
    color: #718096;
    margin-bottom: 48px;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: #2d3748;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: #4a5568;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .split-intro,
    .trust-section,
    .services-split,
    .about-split,
    .team-intro,
    .service-block,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .footer-columns,
    .numbers-container {
        flex-direction: column;
    }

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

    .main-header {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}