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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-left p {
    font-size: 19px;
    color: #546e7a;
    margin-bottom: 35px;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.value-split {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.split-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-intro {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

.services-header p {
    font-size: 18px;
    color: #546e7a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 60px;
    background-color: #ecf0f1;
    border-radius: 8px;
    padding: 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    color: #27ae60;
    font-size: 22px;
    font-weight: 700;
}

.form-right {
    flex: 1;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-split {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

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

.link-cta {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #2980b9;
}

.testimonials {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #546e7a;
    font-size: 15px;
}

.final-cta-split {
    background-color: #2c3e50;
    padding: 80px 20px;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2c3e50;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.approach-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.approach-card p {
    font-size: 16px;
    color: #546e7a;
}

.values-split {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

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

.expertise-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.expertise-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a252f;
}

.expertise-item p {
    font-size: 16px;
    color: #546e7a;
}

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.team-intro {
    font-size: 18px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #546e7a;
}

.cta-section {
    background-color: #ecf0f1;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-section p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 35px;
}

.services-detail {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 10px;
}

.service-detail-price {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 16px;
    color: #546e7a;
    margin-right: 10px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.custom-solutions {
    background-color: #2c3e50;
    padding: 80px 20px;
    text-align: center;
}

.custom-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.custom-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
}

.contact-map {
    margin-top: 30px;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a252f;
}

.contact-form-wrapper p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 30px;
}

.location-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.location-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.location-info p {
    font-size: 17px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto 20px;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.thanks-icon {
    font-size: 80px;
    margin-top: 20px;
}

.thanks-details {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.thanks-details h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    background-color: #3498db;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a252f;
}

.step-content p {
    font-size: 16px;
    color: #546e7a;
}

.thanks-resources {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.thanks-resources h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-resources > p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 40px;
}

.resource-links {
    display: flex;
    gap: 30px;
}

.resource-link {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.resource-link h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.resource-link p {
    font-size: 16px;
    color: #546e7a;
}

.thanks-contact {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
    text-align: center;
}

.thanks-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-contact p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 15px;
}

.email-display {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #546e7a;
}

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-page a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 13px;
    }

    .hero-split,
    .value-split,
    .form-split,
    .trust-split,
    .about-split,
    .values-split,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

    .value-split.reverse,
    .trust-split.reverse,
    .values-split.reverse,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .team-stats {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .resource-links {
        flex-direction: column;
    }

    .form-split {
        padding: 40px 20px;
    }
}