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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    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 {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #666666;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #555555;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
}

.ad-disclosure {
    font-size: 11px;
    color: #999;
    font-style: italic;
    margin-left: 30px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.hero-asymmetric {
    margin-top: 70px;
    min-height: 90vh;
    background-color: #f5f5f0;
    position: relative;
}

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

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-left: 80px;
}

.hero-text-block h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -50px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 20px 20px 0 rgba(45, 90, 61, 0.15);
}

.intro-story {
    padding: 120px 40px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.story-left {
    flex: 1;
    margin-top: 60px;
}

.story-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e0;
}

.story-right {
    flex: 1;
}

.story-right h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.problem-section {
    padding: 100px 40px;
    background-color: #2d5a3d;
}

.problem-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.problem-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: 30px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.problem-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.insight-reveal {
    padding: 120px 40px;
    background-color: #f5f5f0;
}

.insight-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -100px;
}

.insight-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #d8d8d0;
}

.insight-text {
    flex: 1;
    padding-right: 50px;
}

.insight-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.trust-elements {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.trust-container h2 {
    font-size: 46px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #fafafa;
    border-left: 4px solid #2d5a3d;
}

.step-offset {
    margin-top: 50px;
}

.step-number {
    font-size: 52px;
    font-weight: 800;
    color: #2d5a3d;
    opacity: 0.2;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.step-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #f0f0e8;
}

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

.testimonials-wrapper h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
}

.testimonial-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px 30px;
    position: relative;
}

.testimonial-offset {
    margin-top: 40px;
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.benefits-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

.benefits-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-large {
    flex: 2;
    min-width: 500px;
    position: relative;
    background-color: #1a1a1a;
}

.benefit-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    background-color: #2a2a2a;
}

.benefit-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #ffffff;
}

.benefit-text-overlay h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.benefit-small {
    flex: 1;
    min-width: 250px;
    background-color: #f5f5f0;
    padding: 40px 30px;
}

.benefit-offset {
    margin-top: 60px;
}

.benefit-small h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-small p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-pricing {
    padding: 100px 40px;
    background-color: #fafafa;
}

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

.pricing-container h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.pricing-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px 35px;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #2d5a3d;
}

.card-featured {
    border-color: #2d5a3d;
    background-color: #f9fdf9;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 25px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #2d5a3d;
    margin-bottom: 25px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1f3d2a;
}

.form-section {
    padding: 100px 40px;
    background-color: #f0f0e8;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 45px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 35px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f3d2a;
}

.cta-final {
    padding: 120px 40px;
    background-color: #2d5a3d;
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-wrapper p {
    font-size: 20px;
    color: #e8e8e8;
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #2d5a3d;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
}

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: #252525;
    border-left: 4px solid #2d5a3d;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #aaaaaa;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.page-hero {
    margin-top: 70px;
    padding: 100px 40px 60px;
    background-color: #f5f5f0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    color: #4a4a4a;
}

.about-story {
    padding: 100px 40px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text-primary {
    flex: 1;
}

.about-text-primary h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text-primary p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
    line-height: 1.8;
}

.about-image-offset {
    flex: 1;
    margin-top: -60px;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e0;
}

.values-section {
    padding: 100px 40px;
    background-color: #f0f0e8;
}

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
}

.value-offset {
    margin-top: 50px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.team-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.team-container h2 {
    font-size: 44px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.team-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
    line-height: 1.8;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e0;
}

.approach-section {
    padding: 100px 40px;
    background-color: #fafafa;
}

.approach-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-wrapper > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    background-color: #ffffff;
    padding: 35px 40px;
    border-left: 5px solid #2d5a3d;
}

.approach-offset {
    margin-left: 80px;
}

.approach-item strong {
    display: block;
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-full {
    flex-direction: column;
}

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

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

.service-compact {
    flex-direction: row;
    gap: 35px;
}

.service-offset {
    margin-left: 60px;
}

.service-image-large {
    width: 100%;
}

.service-image-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e8e8e0;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e0;
}

.service-image-small {
    flex: 1;
}

.service-image-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e0;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #2d5a3d;
}

.service-wide {
    background-color: #f5f5f0;
    padding: 40px;
}

.cta-services {
    padding: 80px 40px;
    background-color: #f0f0e8;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.contact-layout {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5a3d;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #3a3a3a;
    line-height: 1.8;
}

.contact-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-image-section {
    flex: 1;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e0;
}

.visit-info {
    padding: 80px 40px;
    background-color: #f5f5f0;
}

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

.visit-wrapper h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.visit-grid {
    display: flex;
    gap: 40px;
}

.visit-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px 30px;
}

.visit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.visit-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: #f5f5f0;
    margin-top: 70px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 30px;
    font-weight: 600;
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.btn-primary {
    padding: 14px 35px;
    background-color: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f3d2a;
}

.btn-secondary {
    padding: 14px 35px;
    background-color: #ffffff;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
    margin-top: 70px;
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.legal-container h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2a2a2a;
    font-weight: 600;
}

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

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

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

.legal-container a {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .story-container,
    .about-container,
    .team-layout,
    .contact-container {
        flex-direction: column;
    }

    .problem-grid,
    .testimonial-grid,
    .values-grid,
    .visit-grid {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .testimonial-offset,
    .value-offset {
        margin-top: 0;
    }

    .service-split,
    .service-reverse,
    .service-compact {
        flex-direction: column;
    }

    .service-offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .ad-disclosure {
        margin-left: 0;
    }

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

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

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

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