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

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

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #e9ecef;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.value-proposition {
    padding: 100px 30px;
    background-color: #ffffff;
}

.vp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.vp-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.vp-content {
    flex: 1;
}

.vp-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.process-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

.process-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
}

.process-number {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

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

.services-highlight {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.sh-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.sh-left h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.sh-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

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

.service-quick-card {
    background-color: #ffffff;
    padding: 28px 32px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.service-quick-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-quick-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.trust-markers {
    padding: 100px 30px;
    background-color: #ffffff;
}

.tm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.tm-content {
    flex: 1;
}

.tm-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.tm-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.testimonials-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 36px;
    border-radius: 8px;
}

.testimonial .quote {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
}

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

.form-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-left-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.form-right {
    flex: 1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

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

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

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    max-width: 800px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e8e8e8;
    padding: 24px 30px;
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #2c3e50;
    font-weight: 600;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #495057;
    border: 2px solid #ced4da;
}

.btn-cookie-reject:hover {
    border-color: #2c3e50;
    color: #2c3e50;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 30px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    min-height: 500px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

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

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

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

.service-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

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

.cta-services {
    padding: 100px 30px;
    background-color: #2c3e50;
    text-align: center;
}

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

.cta-services-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-services-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-services-content .cta-primary {
    background-color: #ffffff;
    color: #2c3e50;
}

.cta-services-content .cta-primary:hover {
    background-color: #f8f9fa;
}

.about-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left {
    flex: 1;
    background-color: #e9ecef;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.about-right h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.mission-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.mission-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

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

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
}

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

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

.team-approach {
    padding: 100px 30px;
    background-color: #ffffff;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.numbers-section {
    padding: 100px 30px;
    background-color: #2c3e50;
    text-align: center;
}

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

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

.number-card {
    flex: 1;
}

.number-card .number {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.number-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.approach-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.cta-about {
    padding: 100px 30px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-about-content .cta-primary {
    background-color: #ffffff;
    color: #2c3e50;
}

.cta-about-content .cta-primary:hover {
    background-color: #f8f9fa;
}

.contact-main {
    padding: 100px 30px;
    background-color: #ffffff;
}

.contact-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.contact-info-section {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-note {
    margin-top: 48px;
    padding: 24px;
    background-color: #ffffff;
    border-left: 4px solid #2c3e50;
    border-radius: 4px;
}

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

.contact-image-section {
    flex: 1;
    background-color: #e9ecef;
}

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

.faq-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

.faq-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item {
    background-color: #ffffff;
    padding: 32px 36px;
    margin-bottom: 24px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.legal-page {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

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

.last-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 12px;
}

.legal-container a {
    color: #2c3e50;
    font-weight: 600;
}

.thanks-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

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

.thanks-lead {
    font-size: 20px;
    color: #495057;
    margin-bottom: 28px;
    font-weight: 600;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 40px;
}

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

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

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

.btn-back {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #1a252f;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

@media (max-width: 968px) {
    .hero-split,
    .vp-container,
    .services-highlight,
    .tm-container,
    .form-container-split,
    .service-block,
    .about-intro-split,
    .mission-container,
    .team-container,
    .contact-container-split {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .process-grid,
    .testimonials-grid,
    .values-grid,
    .numbers-grid {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}