* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
    transform: translateY(-2px);
}

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

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

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

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

.logo-area {
    flex-shrink: 0;
}

.brand-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
    letter-spacing: -0.5px;
}

.nav-primary {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-list a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #2b6cb0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2b6cb0;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.ad-disclosure {
    flex-shrink: 0;
}

.disclosure-text {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f7fafc;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #edf2f7;
}

.hero-content-wrapper {
    max-width: 600px;
}

.hero-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.3);
}

.hero-right {
    flex: 1;
    background-color: #cbd5e0;
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
}

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

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.25rem;
    color: #2d3748;
    line-height: 1.8;
    text-align: center;
}

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

.split-left-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.text-block {
    max-width: 550px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.features-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 1.125rem;
}

.split-right-image {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
}

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

.services-cards {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #cbd5e0;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.875rem;
}

.card-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-top: auto;
}

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

.split-image-left {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
}

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

.split-content-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #edf2f7;
}

.content-wrapper {
    max-width: 550px;
}

.intro-paragraph {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefit-item {
    margin-bottom: 1.75rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-form-section {
    padding: 5rem 2rem;
    background-color: #2c5282;
    color: #ffffff;
}

.form-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.form-subheading {
    font-size: 1.125rem;
    color: #e6fffa;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
}

.footer-main {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
    font-size: 0.875rem;
}

.page-hero-simple {
    padding: 5rem 2rem 3rem;
    background-color: #edf2f7;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.split-content-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

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

.content-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.section-heading-center {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approach-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.approach-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
}

.values-list strong {
    color: #1a202c;
}

.experience-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-intro-center {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.experience-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.exp-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.exp-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.exp-card p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-simple-section {
    padding: 5rem 2rem;
    background-color: #2c5282;
    text-align: center;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #e6fffa;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #48bb78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
}

.service-detail-split {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-split.reverse {
    background-color: #f7fafc;
}

.split-content-full {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.detail-left {
    flex: 1;
    min-width: 300px;
}

.detail-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-right {
    flex: 1;
    min-width: 300px;
}

.detail-content-block {
    max-width: 600px;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-detail-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
}

.service-features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 0.75rem;
}

.service-note {
    font-size: 0.9375rem;
    color: #718096;
    font-style: italic;
    line-height: 1.6;
}

.custom-packages-section {
    padding: 5rem 2rem;
    background-color: #edf2f7;
    text-align: center;
}

.section-text-center {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

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

.contact-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.contact-info-block {
    max-width: 550px;
}

.contact-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2b6cb0;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

.email-text {
    font-weight: 600;
    color: #2d3748;
}

.contact-right {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
}

.contact-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.location-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.faq-contact-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.75rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

.ready-to-start-section {
    padding: 5rem 2rem;
    background-color: #2c5282;
    text-align: center;
}

.thanks-hero {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

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

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    display: none;
    padding: 1.25rem;
    background-color: #c6f6d5;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-selected {
    color: #22543d;
    font-size: 1.125rem;
}

.thanks-info-box {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.next-steps-list {
    list-style: none;
    padding: 0;
}

.next-steps-list li {
    padding-left: 2rem;
    margin-bottom: 0.875rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
}

.next-steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 1.25rem;
}

.thanks-note {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.email-highlight {
    font-weight: 600;
    color: #2b6cb0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-action,
.btn-secondary-action {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-action {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

.btn-secondary-action {
    background-color: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}

.btn-secondary-action:hover {
    background-color: #2b6cb0;
    color: #ffffff;
    transform: translateY(-2px);
}

.what-happens-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.suggestion-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 260px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.suggestion-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.suggestion-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.link-subtle {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-subtle:hover {
    color: #2c5282;
    text-decoration: underline;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-narrow-legal {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.9375rem;
    color: #718096;
    margin-bottom: 2rem;
}

.legal-content {
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.7;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c5282;
}

@media (max-width: 1024px) {
    .hero-split,
    .services-preview-split,
    .why-choose-split,
    .about-split-section,
    .values-split-section,
    .contact-split-section {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column !important;
    }

    .hero-heading {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.875rem;
    }
}

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

    .nav-primary {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-heading {
        font-size: 1.875rem;
    }

    .page-title {
        font-size: 2rem;
    }

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

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

    .approach-item,
    .exp-card,
    .faq-item,
    .suggestion-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-left,
    .split-left-content,
    .split-content-right,
    .contact-left {
        padding: 2rem 1.5rem;
    }

    .hero-heading {
        font-size: 1.625rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}