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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight: #e94560;
    --light-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --border-color: #dfe6e9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.ad-disclosure {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    background: var(--light-bg);
}

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

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover, .cta-secondary:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

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

.cta-secondary:hover {
    background: #0a2440;
}

.intro-statement {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.intro-statement h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.intro-statement p {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

.split-feature {
    display: flex;
    align-items: center;
}

.feature-visual {
    flex: 1;
    overflow: hidden;
}

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

.feature-content {
    flex: 1;
    padding: 4rem;
    background: var(--secondary-color);
    color: var(--white);
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.capabilities-grid {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

.capabilities-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.capabilities-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.capability-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.capability-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: var(--white);
}

.testimonial-inline blockquote {
    border: none;
}

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

.testimonial-inline cite {
    font-style: normal;
    opacity: 0.85;
    font-size: 1rem;
}

.services-preview {
    padding: 5rem 2rem;
    background: var(--white);
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--highlight);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: var(--highlight);
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff5f7 100%);
}

.badge {
    display: inline-block;
    background: var(--highlight);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: var(--highlight);
    transform: translateY(-2px);
}

.process-flow {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
}

.process-flow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    opacity: 0.9;
    line-height: 1.7;
}

.contact-form-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

.contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight);
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: var(--highlight);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.site-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.cookie-content a {
    color: var(--highlight);
}

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

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

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

.btn-accept:hover {
    background: #d63651;
}

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

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

.disclaimer-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem;
    border-radius: 4px;
}

.disclaimer-notice p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

.page-header {
    padding: 4rem 2rem 3rem;
    background: var(--light-bg);
    text-align: center;
}

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

.page-header .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 5rem 2rem;
}

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

.content-text {
    flex: 1;
}

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

.content-text p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.expertise-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.expertise-item p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

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

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

.approach-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.cta-section {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detailed {
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-detailed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.service-detailed-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--highlight);
}

.service-detailed-content {
    display: flex;
    gap: 3rem;
    padding: 2.5rem 2rem;
}

.service-description {
    flex: 2;
}

.service-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

.service-description h3:first-child {
    margin-top: 0;
}

.service-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 700;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.detail-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.detail-box p {
    color: var(--text-light);
    margin: 0;
}

.additional-services {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.addon-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--highlight);
}

.addon-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.addon-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.addon-price {
    display: inline-block;
    font-weight: 700;
    color: var(--highlight);
    font-size: 1.125rem;
}

.contact-page-content {
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-form-container {
    flex: 1;
}

.contact-form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

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

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

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

.thanks-page {
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.submission-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.submission-summary {
    text-align: left;
}

.submission-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.submission-summary p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.confirmation-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.next-steps {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.steps-list {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 0.75rem;
}

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

.contact-reminder {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-reminder p {
    margin: 0;
    color: var(--text-light);
}

.contact-reminder strong {
    color: var(--text-dark);
}

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

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

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

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.legal-page h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.legal-page ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--highlight);
    text-decoration: none;
}

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

.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cookie-table ul {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    list-style: none;
    margin-bottom: 1.5rem;
}

.cookie-table ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .service-detailed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-detailed-content {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .value-card {
        flex: 1 1 100%;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .hero-visual {
        min-height: 300px;
    }

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

    .feature-content {
        padding: 3rem 2rem;
    }

    .capability-card,
    .service-card,
    .step {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.5rem;
    }
}