* {
    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;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #1a3a52;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.nav-links a:hover {
    color: #88b3d4;
}

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

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

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

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a24;
}

.btn-secondary {
    background-color: transparent;
    color: #1a3a52;
    padding: 16px 32px;
    border: 2px solid #1a3a52;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

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

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

.intro-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #3d4852;
    text-align: center;
}

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

.approach-image-left {
    flex: 1;
    background-color: #dce3e8;
    overflow: hidden;
}

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

.approach-content-right {
    flex: 1;
    padding: 70px 60px;
    background-color: #f9fafb;
}

.approach-content-right h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-content-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

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

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 20px;
}

.services-preview {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

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

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

.service-icon {
    width: 100%;
    height: 250px;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    color: #1a3a52;
    margin: 25px 25px 15px 25px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 25px 20px 25px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 25px 20px 25px;
}

.service-select-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    background-color: #1a3a52;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select-btn:hover {
    background-color: #0f2438;
}

.why-us-section {
    padding: 90px 30px;
    background-color: #f5f7fa;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

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

.testimonials-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

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

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

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

.form-section {
    padding: 90px 30px;
    background-color: #1a3a52;
}

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

.form-intro {
    flex: 1;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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: #2c5f2d;
}

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

.btn-submit:hover {
    background-color: #234a24;
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #f8f9fa;
    border-top: 1px solid #e2e8f0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.cookie-content a {
    color: #88b3d4;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #234a24;
}

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

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

.page-hero {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

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

.hero-lead {
    font-size: 22px;
    color: #cbd5e0;
}

.content-split-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.values-section {
    padding: 90px 30px;
    background-color: #f5f7fa;
}

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

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 0 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.approach-detail-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.section-intro {
    font-size: 20px;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.process-steps {
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    font-size: 24px;
    color: #1a3a52;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.split-container-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.experience-section {
    padding: 90px 30px;
    background-color: #f5f7fa;
}

.cta-section {
    padding: 90px 30px;
    background-color: #2c5f2d;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
}

.services-detail-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

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

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

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

.service-detail-content h3 {
    font-size: 24px;
    color: #1a3a52;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #4a5568;
    position: relative;
}

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

.service-note {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-left: 3px solid #2c5f2d;
    font-size: 15px;
    color: #5a6c7d;
    margin: 25px 0;
    font-style: italic;
}

.service-pricing-box {
    background-color: #f5f7fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.price-label {
    font-size: 14px;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 38px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.price-note {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 450px;
}

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

.consultation-cta {
    padding: 80px 30px;
    background-color: #1a3a52;
    text-align: center;
    color: #ffffff;
}

.consultation-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.consultation-cta .btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.contact-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-side p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.contact-detail-box {
    margin-bottom: 35px;
}

.contact-detail-box h3 {
    font-size: 20px;
    color: #1a3a52;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-detail-box p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 5px;
}

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

.contact-image {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

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

.contact-form-side h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
}

.checkbox-label span {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

.checkbox-label a {
    color: #2c5f2d;
    text-decoration: underline;
}

.map-placeholder-section {
    padding: 0;
    background-color: #e2e8f0;
}

.map-placeholder {
    height: 400px;
    background-color: #d1dce5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #5a6c7d;
}

.thanks-section {
    padding: 100px 30px;
    background-color: #f5f7fa;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: left;
}

.thanks-lead {
    font-size: 20px;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 30px;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-confirmation {
    font-size: 17px;
    color: #4a5568;
}

.next-steps {
    margin: 40px 0;
}

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

.steps-list {
    list-style: decimal;
    padding-left: 25px;
}

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

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

.additional-info-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.additional-info-section h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.faq-item h3 {
    font-size: 22px;
    color: #1a3a52;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.legal-page h1 {
    font-size: 42px;
    color: #1a3a52;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.legal-page h2 {
    font-size: 28px;
    color: #1a3a52;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: #1a3a52;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 18px;
    color: #1a3a52;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.legal-page ul {
    margin: 15px 0 15px 25px;
}

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

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

.no-link {
    color: #4a5568;
    text-decoration: none;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #f5f7fa;
    font-weight: 700;
    color: #1a3a52;
}

.cookies-table td {
    color: #4a5568;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .hero-split,
    .approach-split,
    .container-split,
    .split-container,
    .split-container-reverse,
    .form-container-split,
    .contact-container,
    .service-detail-item {
        flex-direction: column;
    }

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

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

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

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

    .value-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .section-title {
        font-size: 32px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .thanks-cta-group {
        flex-direction: column;
    }
}