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

html {
    scroll-behavior: smooth;
}

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

.main-header {
    background-color: #1a2332;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #4a90e2;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5b8;
    padding: 0.3rem 0.8rem;
    background-color: #293545;
    border-radius: 4px;
}

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

.hero-text {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

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

.intro-content sup a {
    color: #2563eb;
    text-decoration: none;
}

.problem-section {
    display: flex;
    padding: 5rem 3rem;
    gap: 4rem;
    background-color: #f1f5f9;
}

.problem-text {
    flex: 2;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.problem-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.problem-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-card h3 {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: #64748b;
}

.approach-split {
    display: flex;
}

.approach-content {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #334155;
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.approach-image {
    flex: 1;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-grid {
    padding: 5rem 3rem;
    background-color: #f8fafc;
}

.services-grid h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
}

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

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

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

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: 1rem;
}

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

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #1e293b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #334155;
}

.form-section {
    padding: 5rem 3rem;
    background-color: #e0f2fe;
}

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

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

.form-container p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #475569;
    font-size: 1.1rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
    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: #2563eb;
}

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

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

.testimonials-split {
    display: flex;
}

.testimonial-content {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #fafafa;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.testimonial-block {
    margin-bottom: 3rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #6b7280;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    padding: 4rem 3rem;
    background-color: #fef3c7;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #92400e;
}

.disclaimer-content p {
    color: #78350f;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #4a90e2;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

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

.footer-references p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-references a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-actions {
    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 ease;
}

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

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

.btn-reject {
    background-color: #64748b;
    color: #ffffff;
}

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

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

.about-hero-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f1f5f9;
}

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

.about-hero-content p {
    font-size: 1.2rem;
    color: #475569;
}

.about-hero-image {
    flex: 1;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.philosophy-section {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.philosophy-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.methodology-split {
    display: flex;
}

.methodology-image {
    flex: 1;
    overflow: hidden;
}

.methodology-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.methodology-content {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #fafafa;
}

.methodology-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.methodology-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.methodology-list {
    list-style: none;
    padding-left: 0;
}

.methodology-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #334155;
}

.methodology-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.team-section {
    padding: 5rem 3rem;
    background-color: #f8fafc;
}

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

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

.team-content {
    flex: 1;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

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

.cta-about-section {
    padding: 5rem 3rem;
    background-color: #1e3a8a;
    text-align: center;
}

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

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

.services-hero {
    padding: 5rem 3rem;
    background-color: #f1f5f9;
    text-align: center;
}

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

.services-hero p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a2332;
}

.service-detail-content ul {
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    color: #334155;
    line-height: 1.6;
}

.comparison-section {
    padding: 5rem 3rem;
    background-color: #fafafa;
}

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

.comparison-table {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row.header {
    background-color: #1e293b;
}

.comparison-row.header .comparison-cell {
    color: #ffffff;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1.25rem;
    color: #334155;
    border-right: 1px solid #e2e8f0;
}

.comparison-cell:last-child {
    border-right: none;
}

.contact-hero {
    padding: 5rem 3rem;
    background-color: #f1f5f9;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.2rem;
    color: #64748b;
}

.contact-split {
    display: flex;
}

.contact-info {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: #1a2332;
}

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

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.info-block p {
    color: #475569;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-section {
    padding: 5rem 3rem;
    background-color: #f8fafc;
}

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

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

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

.thanks-section {
    display: flex;
    min-height: 600px;
}

.thanks-content {
    flex: 1.2;
    padding: 5rem 3rem;
    background-color: #f0fdf4;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #166534;
}

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

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

.thanks-details ul {
    margin-top: 1rem;
}

.thanks-details li {
    margin-bottom: 0.75rem;
    color: #334155;
}

.thanks-next-steps {
    margin: 2rem 0;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn-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 ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e2e8f0;
    color: #1a2332;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

.thanks-image {
    flex: 1;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

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

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

.legal-content ul li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .testimonials-split,
    .about-hero-split,
    .methodology-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .problem-section {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

    .value-item {
        flex: 1 1 100%;
    }

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

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}