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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: var(--background-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 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-ad-notice {
    font-size: 11px;
    color: var(--text-light);
    background-color: var(--background-light);
    padding: 4px 12px;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 80px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 100px;
    background-color: var(--background-light);
}

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

.intro-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

.process-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 100px;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

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

.process-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials {
    background-color: var(--background-light);
    padding: 100px 40px;
}

.testimonials h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.services-preview-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.services-preview-split.reverse {
    flex-direction: row-reverse;
}

.services-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-content {
    flex: 1;
}

.services-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
}

.service-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-item .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.link-cta {
    display: inline-block;
    margin-top: 24px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: var(--secondary-color);
}

.form-section {
    background-color: var(--background-light);
    padding: 100px 40px;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    font-size: 17px;
    padding-left: 28px;
    position: relative;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.form-right {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-right input,
.form-right select,
.form-right textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.cta-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.8;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--background-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
}

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

.btn-select {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.services-cta {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--background-light);
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.about-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 32px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

.approach-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

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

.approach-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-list {
    list-style: none;
    margin: 24px 0;
}

.approach-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.approach-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.stats-section {
    background-color: var(--background-light);
    padding: 100px 40px;
}

.stats-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.team-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.team-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.team-roles {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.role-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.role-item p {
    font-size: 16px;
    color: var(--text-light);
}

.team-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-cta {
    text-align: center;
    padding: 100px 40px;
    background-color: var(--background-light);
}

.about-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.contact-details-section {
    background-color: var(--background-light);
    padding: 80px 40px;
}

.contact-details-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.contact-details-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.detail-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 32px;
    border-radius: 12px;
}

.detail-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

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

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.thanks-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.thanks-info p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

#serviceConfirmation {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
}

.step-num {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step p {
    font-size: 17px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 60px 40px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-container li {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container strong {
    color: var(--text-dark);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
}

.gdpr-table thead,
.cookies-table thead {
    background-color: var(--background-light);
}

.gdpr-table th,
.cookies-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.no-link {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .process-split,
    .services-preview-split,
    .form-split,
    .final-cta-split,
    .service-detail-card,
    .about-split,
    .approach-split,
    .team-split,
    .contact-split {
        flex-direction: column;
        gap: 48px;
        padding: 60px 24px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 17px;
    }

    .intro-text h2,
    .process-text h2,
    .services-content h2 {
        font-size: 28px;
    }

    .nav-menu {
        display: none;
    }

    .thanks-container h1 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 42px;
    }
}