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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
}

.ad-notice {
    background-color: #fff3cd;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.notice-text {
    font-size: 12px;
    color: #856404;
    font-weight: 500;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: #1a5490;
}

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

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

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

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a5490;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

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

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

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

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.split-text {
    flex: 1;
}

.split-text h3,
.split-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

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

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

.services-showcase {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-horizontal {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card-image {
    flex: 0 0 400px;
    background-color: #ddd;
}

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

.service-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    flex: 1;
}

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

.btn-select-service {
    padding: 14px 28px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

.form-section-split .container {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.form-left-side {
    flex: 1;
    padding-right: 40px;
}

.form-left-side h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left-side p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

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

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

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 20px;
}

.form-right-side {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

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

.trust-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a5490;
}

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

.cta-final-section {
    padding: 100px 0;
    background-color: #1a5490;
    color: #ffffff;
    text-align: center;
}

.cta-final-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
}

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

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

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
}

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

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

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

.btn-accept {
    background-color: #1a5490;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #555;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #333;
}

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

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

.page-hero p {
    font-size: 18px;
    color: #666;
}

.about-intro-split {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

.team-approach {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

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

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 16px;
}

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

.approach-step p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.cta-about {
    padding: 100px 0;
    background-color: #1a5490;
    text-align: center;
}

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

.cta-about-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

.service-detail-content > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 30px;
}

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

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-size: 20px;
}

.service-price-detail {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
}

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

.form-wrapper-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.form-wrapper-centered p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.form-wrapper-centered .contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
}

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

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

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a5490;
}

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

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

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

.contact-additional {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.contact-additional p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.visit-us {
    padding: 100px 0;
    background-color: #1a5490;
    text-align: center;
}

.visit-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.visit-content p {
    font-size: 18px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

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

.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a5490;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

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

    .split-content,
    .form-section-split .container,
    .service-detail-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-card-horizontal {
        flex-direction: column;
    }

    .service-card-image {
        flex: none;
        width: 100%;
        height: 250px;
    }

    .trust-grid,
    .approach-steps,
    .footer-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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