/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-nav {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-links a {
    color: #ffffff;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.nav-cta {
    background: #3498db;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #2980b9;
}

/* Split Screen Layouts */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.split-text,
.split-visual {
    flex: 1;
}

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

/* Hero Split */
.hero-split {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    display: inline-block;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Trust Bar */
.trust-bar {
    background: #2c3e50;
    color: #ffffff;
    padding: 2rem 0;
}

.trust-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    font-size: 1rem;
    color: #ecf0f1;
}

/* Intro Split */
.intro-split {
    padding: 4rem 0;
}

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

.intro-split p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    color: #3498db;
    margin-bottom: 1rem;
}

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

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Preview Split */
.services-preview-split {
    padding: 4rem 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.service-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.service-select {
    background: #3498db;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-select:hover {
    background: #2980b9;
}

.link-cta {
    display: inline-block;
    margin-top: 2rem;
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #2980b9;
}

/* Testimonial Split */
.testimonial-split {
    padding: 4rem 0;
    background: #ecf0f1;
}

.testimonial-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
}

.step-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Split */
.cta-split {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-split h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-split p {
    color: #f0f0f0;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.brands-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.brands-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-item {
    padding: 1.5rem;
    background: #ffffff;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

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

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

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #bdc3c7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #7f8c8d;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
}

/* Story Split */
.story-split {
    padding: 4rem 0;
}

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

.story-split p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Split */
.team-split {
    padding: 4rem 0;
}

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

.team-split p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #666;
}

/* Approach Split */
.approach-split {
    padding: 4rem 0;
}

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

.approach-split p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: #ecf0f1;
}

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

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

.cta-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-card-full {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-header-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-header-text p {
    color: #666;
    line-height: 1.7;
}

.service-price-main {
    text-align: center;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.checklist,
.variants-list {
    list-style: none;
}

.checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.variants-list li {
    padding: 0.5rem 0;
    color: #555;
}

.variants-list strong {
    color: #e74c3c;
}

.service-select-btn {
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
    width: 100%;
}

.service-select-btn:hover {
    background: #2980b9;
}

/* Pricing Info */
.pricing-info {
    padding: 4rem 0;
    background: #f8f9fa;
}

.info-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Form Section Alt */
.form-section-alt {
    padding: 4rem 0;
}

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

.form-wrapper-centered h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-wrapper-centered p {
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Split */
.contact-split {
    padding: 4rem 0;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.info-item p {
    color: #555;
    line-height: 1.7;
}

.info-item a {
    color: #3498db;
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
}

/* Directions Section */
.directions-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.direction-icon {
    color: #3498db;
    margin-bottom: 1rem;
}

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

.direction-card p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

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

.faq-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 0;
    text-align: center;
}

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

.success-icon {
    color: #27ae60;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.selected-service {
    font-size: 1.1rem;
    color: #555;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Next Steps Section */
.next-steps-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-icon {
    color: #3498db;
}

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

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* While Waiting */
.while-waiting {
    padding: 4rem 0;
}

.waiting-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.waiting-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.waiting-card p {
    color: #666;
    margin-bottom: 1rem;
}

.card-link {
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: #2980b9;
}

/* Reassurance Section */
.reassurance-section {
    padding: 4rem 0;
    background: #ecf0f1;
}

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

.reassurance-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.reassurance-box p {
    color: #666;
    line-height: 1.8;
}

/* Legal Page */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

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

.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.legal-content strong {
    color: #1a1a1a;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

.cookies-table td {
    color: #555;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    html {
        font-size: 18px;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

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

    .hero-split h1 {
        font-size: 2.8rem;
    }

    .trust-container {
        flex-direction: row;
        justify-content: space-around;
    }

    .features-wrapper {
        flex-direction: row;
    }

    .service-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .brands-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-item {
        flex: 0 0 auto;
        min-width: 150px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        flex-direction: row;
        align-items: center;
    }

    .timeline-year {
        min-width: 100px;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-details {
        flex-direction: row;
    }

    .detail-column {
        flex: 1;
    }

    .directions-grid {
        flex-direction: row;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .steps-timeline {
        flex-direction: row;
    }

    .waiting-cards {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 2.5rem;
    }

    .hero-split h1 {
        font-size: 3.2rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }
}
