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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #007bff;
}

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

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #495057;
}

.hero-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #0056b3;
}

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

.cta-secondary:hover {
    background-color: #5a6268;
}

.intro-statement {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-statement h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-statement p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.split-section {
    display: flex;
    align-items: center;
}

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

.split-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 60px;
}

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

.service-preview {
    margin-bottom: 35px;
}

.service-preview h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-preview p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 8px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
}

.link-arrow {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.trust-builder {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

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

.trust-icon {
    background-color: #e9ecef;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.trust-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.form-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #495057;
}

.main-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    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: #007bff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.final-cta {
    padding: 80px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.final-cta .cta-secondary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.final-cta .cta-secondary:hover {
    background-color: #e9ecef;
}

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

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

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

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

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

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

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

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

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

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

.disclaimer-footer {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #007bff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #495057;
}

.cookie-content a {
    color: #007bff;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #007bff;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #0056b3;
}

.btn-cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #5a6268;
}

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

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

.page-header p {
    font-size: 20px;
    color: #495057;
}

.services-detailed {
    padding: 60px 20px;
}

.service-item {
    margin-bottom: 80px;
}

.split-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

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

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

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

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #495057;
}

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

.pricing-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

.btn-service {
    display: inline-block;
    padding: 14px 28px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #0056b3;
}

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

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #495057;
}

.about-intro {
    padding: 80px 20px;
}

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.approach-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.approach-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.team-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.member-image {
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.member-role {
    font-size: 16px;
    color: #6c757d;
}

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

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #495057;
}

.contact-main {
    padding: 80px 20px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

.contact-visual {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

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

.location-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 500px;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.thanks-info {
    margin: 40px 0;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.thanks-visual {
    margin-top: 50px;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

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

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

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

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

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

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #495057;
}

.legal-page a {
    color: #007bff;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .split-layout,
    .contact-split {
        flex-direction: column;
    }

    .split-section.reverse,
    .split-layout.reverse {
        flex-direction: column;
    }

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

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

    .trust-grid,
    .values-grid,
    .team-grid {
        flex-direction: column;
    }

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

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