* {
    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;
}

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.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: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background-color: #ffffff;
}

.split-right {
    position: relative;
    overflow: hidden;
}

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

.hero-split p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

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

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

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

.content-split {
    display: flex;
}

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

.text-block {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.image-block {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 700;
}

.text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

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

.trust-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.trust-section > .container > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 40px 50px;
    border-radius: 8px;
    text-align: center;
    min-width: 250px;
}

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

.stat-label {
    font-size: 15px;
    color: #6c757d;
}

.form-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a252f;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

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

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.page-header {
    padding: 80px 20px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a252f;
    font-weight: 700;
}

.page-header p {
    font-size: 19px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.service-includes {
    list-style: none;
    margin: 25px 0;
}

.service-includes li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 30px 0 20px;
}

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

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

.cta-section {
    padding: 100px 20px;
    background-color: #3498db;
    text-align: center;
}

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

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

.cta-section .cta-button {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-button:hover {
    background-color: #ecf0f1;
}

.team-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    background-color: #f8f9fa;
    padding: 40px 35px;
    border-radius: 8px;
    max-width: 350px;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a252f;
    font-weight: 700;
}

.team-role {
    font-size: 15px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.values-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.values-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a252f;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 8px;
}

.info-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.location-section > .container > p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.location-col {
    flex: 1;
    min-width: 280px;
}

.location-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.location-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.faq-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 280px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.thanks-message {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 40px;
}

.selected-service {
    background-color: #e8f4f8;
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 700;
}

.steps-list {
    padding-left: 20px;
    margin: 0;
}

.steps-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

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

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

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    font-style: italic;
    color: #6c757d;
    font-size: 15px;
}

@media (max-width: 968px) {
    .hero-split,
    .content-split,
    .services-split {
        flex-direction: column;
    }

    .content-split.reverse,
    .services-split.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right,
    .text-block,
    .image-block {
        padding: 60px 30px;
    }

    .hero-split h1,
    .page-header h1,
    .legal-page h1 {
        font-size: 36px;
    }

    .text-block h2,
    .trust-section h2,
    .cta-section h2,
    .team-section h2,
    .values-section h2 {
        font-size: 32px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form {
        padding: 35px 25px;
    }
}