* {
    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;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2a5f8f;
}

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

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

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

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

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

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

.cookie-content a {
    color: #8ec5fc;
}

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

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
}

.story-intro {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.lead-text {
    font-size: 24px;
    font-weight: 600;
    color: #2a5f8f;
    margin-bottom: 30px;
    line-height: 1.4;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a2f4f;
}

.insight-section > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
}

.insight-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2a5f8f;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2a5f8f;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.7;
}

.visual-showcase {
    padding: 0;
}

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

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

.benefits-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a2f4f;
}

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

.benefit-card {
    display: flex;
    gap: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-card img {
    width: 400px;
    height: 300px;
}

.benefit-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2a5f8f;
}

.benefit-content p {
    font-size: 17px;
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2a3f5f;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #8ec5fc;
    font-weight: 600;
}

.cta-section-mid {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a5f8f, #4a9eff);
}

.cta-box {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #2a5f8f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #2a5f8f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #2a5f8f;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #2a5f8f;
    color: #ffffff;
}

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

.services-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a2f4f;
}

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

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 350px;
    display: block;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2a5f8f;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2a5f8f;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 35px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #2a7edf;
    transform: translateY(-2px);
}

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

.order-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a2f4f;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

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

.science-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.science-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a2f4f;
}

.science-section p {
    font-size: 17px;
    line-height: 1.7;
}

.science-section a {
    color: #2a5f8f;
    text-decoration: none;
    border-bottom: 1px solid #2a5f8f;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #fff9e6;
    border-top: 1px solid #e0d4a0;
    border-bottom: 1px solid #e0d4a0;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #8ec5fc;
}

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

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
}

.references a {
    color: #8ec5fc;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.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: #aaa;
}

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

.thanks-content {
    text-align: center;
}

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

.thanks-details {
    margin: 40px 0;
    text-align: left;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.next-steps {
    margin-top: 60px;
    text-align: left;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a2f4f;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a2f4f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2a5f8f;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a5f8f;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

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

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

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: #2a5f8f;
    text-decoration: none;
    border-bottom: 1px solid #2a5f8f;
}

.legal-page a:hover {
    color: #4a9eff;
    border-bottom-color: #4a9eff;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

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

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2a5f8f;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #2a5f8f;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.page-hero {
    background: linear-gradient(135deg, #2a5f8f, #4a9eff);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

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

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2f4f;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2a5f8f;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

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

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

.story-split .split-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.contact-split {
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a5f8f;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
}

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

.contact-image-side img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.map-section {
    padding: 60px 20px;
    background-color: #f5f7fa;
    text-align: center;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a2f4f;
}

.map-placeholder {
    background-color: #e0e0e0;
    padding: 80px 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 10px;
}

.map-address {
    font-weight: 600;
    color: #2a5f8f;
}

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

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

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

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

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

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

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2a5f8f;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.price-box {
    margin: 25px 0;
    padding: 20px;
    background-color: #f5f7fa;
    border-left: 4px solid #2a5f8f;
    display: inline-block;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2a5f8f;
}

.btn-select {
    padding: 14px 35px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: #2a7edf;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a2f4f;
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
}

.btn-submit {
    padding: 14px 35px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #2a7edf;
    transform: translateY(-2px);
}

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

.hero-left {
    flex: 1;
    background: linear-gradient(135deg, #2a5f8f, #4a9eff);
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-content {
    color: #ffffff;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #2a5f8f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-right {
    flex: 1;
}

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

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

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

.intro-split .split-image {
    flex: 1;
}

.intro-split .split-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.intro-split .split-content {
    flex: 1;
}

.intro-split .split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2f4f;
}

.intro-split .split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-grid {
    padding: 80px 20px;
    background-color: #f5f7fa;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a2f4f;
}

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

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.services-container .service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2a5f8f;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.cta-split {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.cta-content {
    flex: 1;
}

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

.cta-content p {
    font-size: 17px;
    line-height: 1.7;
}

.cta-form-wrapper {
    flex: 1;
}

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

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

.benefits-split .split-image {
    flex: 1;
}

.benefits-split .split-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.benefits-split .split-content {
    flex: 1;
}

.benefits-split .split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2f4f;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
    font-size: 20px;
}

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

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

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

.main-footer .footer-column {
    flex: 1;
}

.main-footer .footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #8ec5fc;
}

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

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

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

.main-footer .footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.main-footer .footer-column ul li a:hover {
    color: #8ec5fc;
}

.main-footer .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-text p {
        font-size: 16px;
    }

    .split-layout {
        flex-direction: column;
        gap: 30px;
    }

    .benefit-card {
        flex-direction: column;
    }

    .benefit-card:nth-child(even) {
        flex-direction: column;
    }

    .benefit-card img {
        width: 100%;
        height: 250px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .hero-split {
        flex-direction: column;
    }

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

    .about-split, .story-split, .contact-split, .intro-split, .benefits-split, .service-detail-split {
        flex-direction: column;
    }

    .story-split.reverse, .intro-split.reverse, .benefits-split.reverse {
        flex-direction: column;
    }

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

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

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

    .cta-split .container {
        flex-direction: column;
    }

    .main-footer .footer-content {
        flex-direction: column;
    }
}