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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container.narrow {
    max-width: 800px;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    white-space: nowrap;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie,
.btn-cookie-outline {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-split {
    background-color: #f8f9fa;
}

.split-container {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    padding: 60px 40px;
}

.split-right {
    background-color: #e8eef3;
}

.split-right img {
    width: 100%;
    height: 100%;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #134073;
    transform: translateY(-2px);
}

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

.split-section.reverse .split-container {
    flex-direction: row-reverse;
}

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

.section-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #546e7a;
}

.link-inline {
    color: #1a5490;
    font-weight: 600;
    border-bottom: 2px solid #1a5490;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: #134073;
    border-bottom-color: #134073;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #e8eef3;
}

.service-card h3 {
    font-size: 22px;
    color: #1a5490;
    margin: 20px 20px 12px;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    margin: 0 20px 16px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    margin: 0 20px 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin: 30px 0 20px;
}

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

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

.form-section > .container > p {
    text-align: center;
    color: #546e7a;
    margin-bottom: 40px;
}

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

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

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

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

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

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

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

.footer-col h4 {
    font-size: 18px;
    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: #ecf0f1;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

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

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

.page-hero p {
    font-size: 20px;
}

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

.content-section h2 {
    font-size: 32px;
    color: #1a5490;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
}

.content-section.dark-bg {
    background-color: #f8f9fa;
}

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

.contact-info-block {
    padding: 40px;
}

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

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

.info-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.info-item .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

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

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

.legal-content h2:first-of-type {
    margin-top: 0;
}

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

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

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: #546e7a;
}

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

.service-item {
    margin-bottom: 80px;
}

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

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    background-color: #e8eef3;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    color: #1a5490;
    margin-bottom: 16px;
}

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

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

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

.feature-list li {
    font-size: 16px;
    color: #546e7a;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

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

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

.cta-section h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 16px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #1a5490;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-content > p {
    font-size: 18px;
    color: #546e7a;
    text-align: center;
    margin-bottom: 40px;
}

.confirmation-box {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 20px;
    margin: 40px 0;
    display: none;
}

.confirmation-box h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.confirmation-box p {
    font-size: 16px;
    color: #546e7a;
}

.next-steps {
    list-style: none;
    margin: 30px 0;
}

.next-steps li {
    font-size: 17px;
    color: #546e7a;
    padding-left: 30px;
    margin-bottom: 16px;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
}

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

.btn-primary,
.btn-outline {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-outline {
    background-color: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
}

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

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

    .split-section.reverse .split-container {
        flex-direction: column;
    }

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

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

    .section-content h2 {
        font-size: 28px;
    }

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

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

    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .action-links {
        flex-direction: column;
    }
}