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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --accent: #c9a876;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px var(--shadow);
}

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1400px;
}

.nav-container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-offset-content {
    width: 55%;
    padding: 150px 60px 80px 80px;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.hero-text-block p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background-color: #1f4029;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 15%;
    width: 50%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.1) 0%, transparent 100%);
}

.intro-offset {
    padding: 120px 80px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    width: 40%;
}

.intro-narrow h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.intro-wide-image {
    width: 55%;
}

.intro-wide-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px var(--shadow);
}

.services-irregular {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 70px;
    margin-left: 8%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-overlap-left {
    margin-left: 5%;
    margin-right: 15%;
}

.card-overlap-right {
    margin-left: 15%;
    margin-right: 5%;
    flex-direction: row-reverse;
}

.card-overlap-center {
    margin-left: 10%;
    margin-right: 10%;
}

.service-image {
    width: 45%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

.service-info {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1f4029;
    transform: translateX(5px);
}

.form-section-offset {
    padding: 120px 80px;
    background-color: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 900px;
    margin-left: 12%;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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(--primary-color);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1f4029;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}

.trust-section {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.trust-content-split {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-text {
    width: 50%;
}

.trust-text h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.trust-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-image {
    width: 50%;
}

.trust-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px var(--shadow);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 70px 80px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-block h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.footer-block a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-block p {
    color: var(--bg-light);
    font-size: 0.95rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
    font-size: 0.9rem;
}

.page-header-asymmetric {
    padding: 180px 80px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.header-content-offset {
    max-width: 800px;
    margin-left: 8%;
}

.header-content-offset h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.header-content-offset p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    padding: 80px 80px;
}

.story-layout-irregular {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.story-layout-irregular.reverse {
    flex-direction: row-reverse;
}

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

.story-block-left h2,
.story-block-right h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-block-left p,
.story-block-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.story-image-left img,
.story-image-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px var(--shadow);
}

.values-section {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow);
    flex: 1;
    min-width: 250px;
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.team-section {
    padding: 100px 80px;
}

.team-intro-offset {
    max-width: 700px;
    margin-bottom: 50px;
    margin-left: 10%;
}

.team-intro-offset h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-intro-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-image-full img {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 40px var(--shadow);
}

.cta-section-offset {
    padding: 120px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f4029 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 18px 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.services-detailed {
    padding: 80px 80px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.offset-left {
    margin-left: 5%;
    margin-right: 10%;
}

.service-detail-card.offset-right {
    margin-left: 10%;
    margin-right: 5%;
}

.service-detail-card.offset-center {
    margin-left: 8%;
    margin-right: 8%;
}

.service-detail-image {
    width: 50%;
    height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 35px var(--shadow);
}

.service-detail-content {
    width: 50%;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
}

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

.service-pricing-block {
    margin-bottom: 25px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-select-service {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #1f4029;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}

.guarantee-section {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.guarantee-content-asymmetric {
    max-width: 1200px;
    margin-left: 10%;
}

.guarantee-content-asymmetric h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.guarantee-item {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow);
    flex: 1;
    min-width: 280px;
}

.guarantee-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.guarantee-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-section-asymmetric {
    padding: 80px 80px;
}

.contact-layout {
    display: flex;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-block {
    width: 45%;
}

.contact-info-block h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map-placeholder {
    width: 55%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e0e0 100%);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 30px;
}

.map-overlay p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-cta-section {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.cta-asymmetric-layout {
    max-width: 700px;
    margin-left: 15%;
    text-align: left;
}

.cta-asymmetric-layout h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-asymmetric-layout p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.thanks-section {
    padding: 180px 80px 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content-centered {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content-centered h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.thanks-content-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.thanks-details p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

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

.next-steps-section {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.next-steps-content h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.legal-page {
    padding: 180px 80px 80px;
}

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

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f4029;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.gdpr-table th,
.cookie-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.gdpr-table tr:hover,
.cookie-table tr:hover {
    background-color: var(--bg-light);
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 10px;
        width: calc(100% - 20px);
    }

    .nav-container {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-content {
        width: 100%;
        padding: 120px 40px 60px;
    }

    .hero-image-overlap {
        position: relative;
        width: 90%;
        right: 0;
        margin: 0 auto;
        transform: rotate(0);
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-narrow,
    .intro-wide-image {
        width: 100%;
    }

    .services-irregular {
        padding: 80px 40px;
    }

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

    .card-overlap-left,
    .card-overlap-right,
    .card-overlap-center {
        margin-left: 0;
        margin-right: 0;
    }

    .service-image,
    .service-info {
        width: 100%;
    }

    .form-section-offset {
        padding: 80px 40px;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

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

    .trust-text,
    .trust-image {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .story-layout-irregular,
    .story-layout-irregular.reverse {
        flex-direction: column;
    }

    .story-block-left,
    .story-block-right,
    .story-image-left,
    .story-image-right {
        width: 100%;
    }

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

    .service-detail-card {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-info-block,
    .contact-map-placeholder {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-text-block p {
        font-size: 1rem;
    }

    .intro-narrow h2 {
        font-size: 2rem;
    }

    .section-header-offset h2 {
        font-size: 2.2rem;
    }

    .header-content-offset h1 {
        font-size: 2.5rem;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .thanks-content-centered h1 {
        font-size: 2.2rem;
    }
}