* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7a;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #2c5f7a;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: #f8fbfc;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 36px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5f7a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: #1f4459;
}

.insight-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.insight-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 36px;
    color: #1a3a4d;
    margin-bottom: 24px;
    line-height: 1.3;
}

.insight-text p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.insight-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-highlight {
    padding: 80px 0;
    background-color: #f5f9fb;
}

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

.section-header-center h2 {
    font-size: 42px;
    color: #1a3a4d;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 20px;
    color: #546e7a;
}

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #1a3a4d;
    margin-bottom: 16px;
}

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

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

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #2c5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1f4459;
}

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1.3;
}

.trust-text h2 {
    font-size: 38px;
    color: #1a3a4d;
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    padding: 24px;
    background-color: #f5f9fb;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 8px;
}

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

.testimonials-flow {
    padding: 80px 0;
    background-color: #f5f9fb;
}

.section-title-left {
    font-size: 42px;
    color: #1a3a4d;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #1a3a4d;
}

.testimonial-author span {
    font-size: 14px;
    color: #7f8c8d;
}

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

.form-container-split {
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a3a4d;
    margin-bottom: 24px;
}

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

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

.benefit-item {
    padding: 12px 16px;
    background-color: #f5f9fb;
    border-left: 4px solid #2c5f7a;
    font-size: 16px;
    color: #34495e;
}

.form-wrapper {
    flex: 1;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    color: #2c3e50;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 36px;
    background-color: #2c5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer-box {
    padding: 36px;
    background-color: #ffffff;
    border-left: 4px solid #e67e22;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 20px;
    color: #1a3a4d;
    margin-bottom: 16px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.footer {
    background-color: #1a3a4d;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

.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;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    margin: 0;
    font-size: 15px;
}

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

.btn-primary {
    padding: 12px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 12px 28px;
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f5f9fb;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a3a4d;
    margin-bottom: 16px;
}

.page-intro {
    font-size: 20px;
    color: #546e7a;
}

.about-story {
    padding: 80px 0;
}

.content-split-asymmetric {
    display: flex;
    gap: 50px;
}

.content-main {
    flex: 2;
}

.content-main h2 {
    font-size: 36px;
    color: #1a3a4d;
    margin-bottom: 24px;
}

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

.content-sidebar {
    flex: 1;
    padding: 36px;
    border-radius: 8px;
}

.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat-value {
    font-size: 52px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 8px;
}

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

.team-visual {
    padding: 0 0 80px;
}

.image-showcase {
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f5f9fb;
}

.section-title-center {
    font-size: 42px;
    color: #1a3a4d;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.value-item h3 {
    font-size: 24px;
    color: #1a3a4d;
    margin-bottom: 16px;
}

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

.expertise-section {
    padding: 80px 0;
}

.expertise-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    color: #1a3a4d;
    margin-bottom: 24px;
}

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

.expertise-list {
    list-style: none;
    margin-top: 24px;
}

.expertise-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.approach-section {
    padding: 80px 0;
    background-color: #f5f9fb;
}

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

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

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f7a;
    opacity: 0.3;
    margin-bottom: 16px;
}

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

.step-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    padding: 60px;
    background-color: #2c5f7a;
    border-radius: 8px;
}

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

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

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c5f7a;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-cta:hover {
    background-color: #f8f9fa;
}

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

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

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

.service-detail-content h3 {
    font-size: 22px;
    color: #1a3a4d;
    margin-top: 30px;
    margin-bottom: 16px;
}

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

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

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

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

.service-pricing-box {
    margin-top: 30px;
    padding: 24px;
    background-color: #f5f9fb;
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 8px;
}

.price-note {
    font-size: 15px;
    color: #546e7a;
    margin: 0;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.services-cta {
    padding: 80px 0;
    background-color: #f5f9fb;
}

.cta-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-centered h2 {
    font-size: 38px;
    color: #1a3a4d;
    margin-bottom: 20px;
}

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

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

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

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

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

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

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

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

.contact-note p {
    font-size: 15px;
    color: #546e7a;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
}

.map-overlay p {
    font-size: 24px;
    color: #546e7a;
}

.contact-approach {
    padding: 80px 0;
    background-color: #f5f9fb;
}

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

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2c5f7a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-size: 20px;
    color: #1a3a4d;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f5f9fb;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1a3a4d;
    margin-bottom: 14px;
}

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

.thanks-section {
    padding: 120px 0;
    background-color: #f5f9fb;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
}

.thanks-service-info {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #34495e;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    color: #1a3a4d;
    margin-bottom: 16px;
}

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

.thanks-next-steps ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

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

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

.legal-content {
    padding: 60px 0;
}

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

.legal-text h2 {
    font-size: 30px;
    color: #1a3a4d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: #1a3a4d;
    margin-top: 30px;
    margin-bottom: 16px;
}

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

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

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

.legal-text a:hover {
    color: #1f4459;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 50px 40px;
    }

    .hero-right {
        min-height: 400px;
    }

    .insight-grid,
    .trust-content-split,
    .form-container-split,
    .content-split-asymmetric,
    .expertise-layout,
    .contact-layout,
    .service-detail-layout {
        flex-direction: column;
    }

    .testimonials-grid,
    .approach-steps,
    .approach-timeline {
        flex-direction: column;
    }

    .service-card,
    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero-text-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header-center h2,
    .section-title-left,
    .section-title-center {
        font-size: 32px;
    }

    .nav {
        gap: 20px;
    }

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

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