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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a252f;
    --border-color: #ddd;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.ad-disclosure {
    background-color: #fffbea;
    color: #8b6914;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e8d799;
}

.main-nav {
    background-color: var(--primary-color);
    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;
    height: 70px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    object-fit: cover;
    background-color: #555;
}

.story-section {
    padding: 100px 20px;
    background-color: #fff;
}

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

.story-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.insight-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px 30px;
    margin: 40px 0;
    font-size: 17px;
    font-weight: 500;
}

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

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.problem-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ddd;
}

.problem-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    line-height: 1.6;
    color: #555;
}

.solution-intro {
    padding: 100px 20px;
    background-color: var(--dark-bg);
    color: #fff;
}

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

.solution-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.solution-content p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefits-section {
    padding: 100px 20px;
    background-color: #fff;
}

.benefits-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.benefit-item img {
    flex: 1;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
}

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

.services-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.services-grid-funnel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card.selected {
    border-color: var(--secondary-color);
    background-color: #f0f8ff;
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
}

.cta-button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: scale(1.03);
}

.form-section {
    padding: 100px 20px;
    background-color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light-bg);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 35px;
    color: #666;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

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

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    background-color: var(--success-color);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    background-color: #229954;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.guarantee-section {
    padding: 80px 20px;
    background-color: var(--dark-bg);
    color: #fff;
}

.guarantee-content {
    max-width: 1100px;
    margin: 0 auto;
}

.guarantee-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.guarantee-item {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.guarantee-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    background-color: #0f0f0f;
    padding: 25px 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    border-top: 1px solid #333;
}

.footer-bottom {
    background-color: #000;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.95);
    color: #fff;
    padding: 25px 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: #fff;
}

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

.cookie-reject {
    background-color: #555;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #666;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 19px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 20px;
}

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

.about-intro {
    margin-bottom: 80px;
}

.about-intro img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    object-fit: cover;
    background-color: #ddd;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.mission-section {
    background-color: var(--light-bg);
    padding: 60px 40px;
    border-radius: 10px;
    margin-bottom: 80px;
}

.mission-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.value-card {
    flex: 1 1 280px;
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-section img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    object-fit: cover;
    background-color: #ddd;
}

.commitment-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
}

.commitment-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.commitment-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.services-detail {
    padding: 80px 20px;
}

.service-detail-card {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.service-detail-card img {
    flex: 1;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ddd;
}

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

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

.service-price-large {
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.popular-inline {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-features-detail li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

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

.service-benefits {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

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

.benefits-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-box {
    flex: 1 1 280px;
    max-width: 320px;
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.benefit-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.contact-content {
    padding: 80px 20px;
}

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

.contact-info-wrapper {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1 1 400px;
    background-color: var(--light-bg);
    padding: 40px 35px;
    border-radius: 10px;
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 30px;
}

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

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-map {
    flex: 1 1 400px;
}

.contact-map img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    background-color: #ddd;
}

.map-caption {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    text-align: center;
}

.contact-support {
    max-width: 800px;
    margin: 0 auto;
}

.contact-support h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.contact-support > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.faq-section {
    margin-top: 60px;
}

.faq-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-item {
    background-color: var(--light-bg);
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-content {
    background-color: var(--light-bg);
    padding: 40px 35px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    flex: 1 1 220px;
    max-width: 260px;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

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

.cta-button-secondary {
    background-color: #fff;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.legal-page {
    padding: 60px 20px 100px;
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container h4 {
    font-size: 19px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-container ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-note {
    background-color: var(--light-bg);
    padding: 20px 25px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 30px;
    font-weight: 600;
}

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

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

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

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

    .hero-subtitle {
        font-size: 17px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

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

    .contact-info-wrapper {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .story-container h2,
    .about-text h2 {
        font-size: 28px;
    }

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