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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f8d;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #2c5f8d;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-left {
    flex: 1;
    padding-right: 4rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    background: #2c5f8d;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.split-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

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

.link-secondary {
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.link-secondary:hover {
    border-bottom-color: #2c5f8d;
}

.services-preview {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-icon {
    width: 100%;
    height: 250px;
    background: #f0f4f8;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f8d;
    margin: 0 1.5rem 1.5rem;
}

.btn-service {
    background: #2c5f8d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin: 0 1.5rem 1.5rem;
    transition: all 0.3s;
    width: calc(100% - 3rem);
}

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

.process-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5f8d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.testimonials-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.testimonials-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f8d;
}

.cta-section-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c5f8d 0%, #1f4668 100%);
    border-radius: 12px;
    align-items: center;
    gap: 3rem;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-left p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-right {
    flex: 0 0 auto;
}

.cta-large {
    background: white;
    color: #2c5f8d;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff8e1;
    border-left: 4px solid #ffa726;
    border-radius: 4px;
}

.disclaimer-section p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.btn-submit {
    background: #2c5f8d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1.5rem 2rem;
    z-index: 999;
    display: none;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-accept {
    background: #4caf50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-content-left {
    flex: 1;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.hero-content-left p {
    font-size: 1.3rem;
    color: #666;
}

.hero-image-right {
    flex: 1;
    background: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-list {
    list-style: none;
    margin-top: 1.5rem;
}

.approach-list li {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.approach-list strong {
    color: #2c5f8d;
}

.team-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.team-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.team-member:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.member-image {
    width: 100%;
    height: 300px;
    background: #f0f4f8;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 0.5rem;
}

.member-role {
    font-size: 0.95rem;
    color: #2c5f8d;
    font-weight: 600;
    margin: 0 1.5rem 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

.values-section-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.values-left {
    flex: 1;
}

.values-left h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h4 {
    font-size: 1.4rem;
    color: #2c5f8d;
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.values-right {
    flex: 1;
    background: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

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

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

.service-detail-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

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

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f8d;
    margin: 2rem 0 1.5rem;
}

.faq-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2c5f8d;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.note-text {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-right {
    flex: 1;
    background: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-form-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-container-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 0 0 400px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.form-wrapper {
    flex: 1;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label a {
    color: #2c5f8d;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.map-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.map-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.map-section p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.thanks-content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-left {
    flex: 1;
}

.success-icon {
    margin-bottom: 2rem;
}

.thanks-left h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-main {
    font-size: 1.3rem;
    color: #2c5f8d;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-left p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #2c5f8d;
    font-weight: 600;
    margin-top: 1.5rem;
}

.thanks-right {
    flex: 1;
    background: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.next-steps-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.next-steps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step-card {
    flex: 1;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #2c5f8d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.useful-links-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: flex-start;
}

.links-left {
    flex: 0 0 400px;
}

.links-left h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.links-left p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.links-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.link-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.link-card h3 {
    font-size: 1.4rem;
    color: #2c5f8d;
    margin-bottom: 0.5rem;
}

.link-card p {
    font-size: 1rem;
    color: #666;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-container {
    background: white;
}

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-update {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2c5f8d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: #2c5f8d;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .page-hero-split,
    .cta-section-split,
    .contact-info-split,
    .values-section-split,
    .service-detail-split,
    .form-container-split,
    .thanks-content-split,
    .useful-links-split {
        flex-direction: column;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-left h1,
    .hero-content-left h1 {
        font-size: 2.5rem;
    }

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

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

    .testimonials-split,
    .steps-grid,
    .faq-grid {
        flex-direction: column;
    }

    .form-intro {
        flex: 1;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-links {
        flex-basis: 100%;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1.1rem;
    }

    .split-content h2,
    .section-header-center h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-disclosure {
        font-size: 0.7rem;
    }

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