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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.mobile-menu a:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
}

.split-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.split-left,
.split-right {
    width: 100%;
}

.hero-split {
    background-color: var(--light-bg);
    padding: 3rem 0;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-primary:hover {
    background-color: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 0.9rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.intro-alternate {
    padding: 4rem 0;
}

.content-block {
    padding: 2rem 0;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
}

.services-preview {
    padding: 4rem 0;
}

.service-quick-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.quick-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.quick-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.quick-item p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.testimonial-band {
    background-color: var(--secondary-color);
    padding: 3rem 0;
    color: var(--white);
}

.testimonial {
    text-align: center;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.process-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 50px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
}

.cta-section-inline {
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.portfolio-glimpse {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(0);
    transition: var(--transition);
}

.portfolio-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-section {
    padding: 4rem 0;
}

.form-intro {
    padding: 2rem 0;
}

.form-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefits-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.main-form {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.trust-band {
    background-color: var(--light-bg);
    padding: 2rem 0;
    text-align: center;
}

.trust-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
}

.sticky-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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-content p {
    margin: 0;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

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

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

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

.page-header-split {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.page-header-split h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

.story-section {
    padding: 4rem 0;
}

.philosophy-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

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

.philosophy-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-card p {
    color: var(--text-light);
}

.team-intro {
    padding: 4rem 0;
}

.numbers-section {
    background-color: #4c5d8a;
    padding: 4rem 0;
    color: var(--white);
}

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

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

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.number-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.values-deep {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.services-main {
    padding: 4rem 0;
}

.service-item-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-item-split:last-child {
    border-bottom: none;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-includes li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.service-price-box .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-service {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-service:hover {
    background-color: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.process-overview {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-marker {
    min-width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-item p {
    color: var(--text-light);
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-details {
    padding: 2rem 0;
}

.contact-details h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--accent-color);
}

.info-block a:hover {
    text-decoration: underline;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

.why-contact {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

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

.expectation-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.expectation-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.expectation-item p {
    color: var(--text-light);
}

.faq-section {
    padding: 4rem 0;
}

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

.faq-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.final-cta-contact {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.thanks-hero {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.thanks-content {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

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

.step-num {
    min-width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item p {
    color: var(--text-light);
    padding-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.while-waiting {
    padding: 4rem 0;
}

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

.suggestion-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.suggestion-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.suggestion-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.suggestion-card a {
    color: var(--accent-color);
    font-weight: 600;
}

.suggestion-card a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page strong {
    color: var(--primary-color);
}

.legal-page a {
    color: var(--accent-color);
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .split-container {
        flex-direction: row;
        gap: 3rem;
    }

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

    .split-left,
    .split-right {
        width: 50%;
    }

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

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

    .value-card {
        flex: 1 1 calc(33.333% - 2rem);
    }

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

    .portfolio-item {
        flex: 1 1 calc(33.333% - 2rem);
    }

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
    }

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

    .philosophy-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .number-item {
        flex: 1;
    }

    .service-item-split {
        flex-direction: row;
    }

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

    .service-visual,
    .service-details {
        flex: 1;
    }

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

    .expectation-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

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

    .suggestion-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-title-center {
        font-size: 2.5rem;
    }

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