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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2563eb;
    color: #fff;
}

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

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

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-label {
    background-color: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f9fafb;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0.95;
}

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

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

.cta-primary {
    padding: 16px 36px;
    background-color: #fbbf24;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.intro-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.text-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #1d4ed8;
}

.problem-section {
    background-color: #f3f4f6;
    padding: 80px 40px;
}

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

.problem-content h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.challenges-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.challenge-item {
    flex: 1;
    background-color: #fff;
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.challenge-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.challenge-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    padding: 16px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
}

.btn-secondary {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-cta {
    text-align: center;
}

.services-cta a {
    color: #2563eb;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-cta a:hover {
    color: #1d4ed8;
}

.testimonials-section {
    background-color: #1e3a8a;
    padding: 80px 40px;
    color: #fff;
}

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

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    border-left: 4px solid #fbbf24;
    padding-left: 24px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 15px;
    font-style: normal;
    opacity: 0.8;
}

.form-section {
    background-color: #f9fafb;
    padding: 80px 40px;
}

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

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.form-container {
    flex: 1;
    background-color: #fff;
    padding: 48px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.references-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #1d4ed8;
}

.disclaimer-section {
    background-color: #fef3c7;
    padding: 40px;
    margin: 60px 40px;
    border-radius: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #92400e;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f9fafb;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.thanks-container .service-selected {
    font-weight: 600;
    color: #1e3a8a;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #1e3a8a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background-color: #1e40af;
}

.about-hero {
    background-color: #1e3a8a;
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-hero {
    background-color: #f9fafb;
    padding: 80px 40px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #4b5563;
}

.services-list {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-details .price {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.contact-hero {
    background-color: #1e3a8a;
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.contact-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.contact-details {
    flex: 1;
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 8px;
}

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #1d4ed8;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .form-split,
    .testimonial-split,
    .about-split,
    .contact-info-split {
        flex-direction: column;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
}