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

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

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

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

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

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

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

.nav-main a:hover {
    color: #1a4d6d;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

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

.hero-text-content {
    max-width: 550px;
}

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

.hero-text-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    padding: 16px 40px;
    background-color: #1a4d6d;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2c5f77;
}

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

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

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
}

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

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #5a5a5a;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d6d;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background-color: #2c5f77;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.trust-image {
    flex: 1;
}

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

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #1a4d6d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-text p {
    font-size: 16px;
    color: #5a5a5a;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #5a5a5a;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e5e5e5;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background-color: #2c5f77;
}

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #d97f3e;
}

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

.footer-main {
    background-color: #2a2a2a;
    color: #e5e5e5;
    padding: 60px 0 30px;
}

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

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    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;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #1a4d6d;
    color: #ffffff;
}

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

.btn-cookie-alt {
    background-color: #4a4a4a;
    color: #ffffff;
}

.btn-cookie-alt:hover {
    background-color: #5a5a5a;
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: #5a5a5a;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

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

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro p {
    font-size: 17px;
    color: #5a5a5a;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
}

.member-photo {
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

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

.member-role {
    font-size: 15px;
    color: #1a4d6d;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.commitment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #1a4d6d;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.btn-cta {
    display: inline-block;
    padding: 16px 50px;
    background-color: #ffffff;
    color: #1a4d6d;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

.service-detail-split {
    display: flex;
    gap: 50px;
    align-items: center;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

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

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

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

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #1a4d6d;
    margin: 24px 0;
}

.btn-service-large {
    padding: 16px 40px;
    background-color: #1a4d6d;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service-large:hover {
    background-color: #2c5f77;
}

.service-detail-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
}

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

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

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

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

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a4d6d;
    font-weight: 700;
}

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

.info-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 3px solid #1a4d6d;
}

.info-note p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    display: block;
}

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

.centered-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 17px;
    color: #5a5a5a;
}

.thanks-section {
    padding: 100px 0;
}

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

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

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a5a5a;
    line-height: 1.7;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 16px;
    color: #4a4a4a;
}

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

.btn-primary {
    padding: 14px 35px;
    background-color: #1a4d6d;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 35px;
    background-color: #e5e5e5;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.next-steps {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.step-box {
    flex: 1 1 calc(25% - 23px);
    min-width: 200px;
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.step-box .step-number {
    width: 60px;
    height: 60px;
    background-color: #1a4d6d;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-box p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

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

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

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

.legal-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a5a5a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #999;
}

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

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

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

    .contact-layout {
        flex-direction: column;
    }

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

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

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

    .nav-main {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .header-content {
        justify-content: center;
    }
}
