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

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34495e;
    --accent-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 2px solid var(--primary-color);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

.btn-cookie {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.btn-cookie.reject {
    background: var(--text-light);
    color: white;
}

.btn-cookie.reject:hover {
    background: #6c757d;
    transform: translateY(-2px);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

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

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

.hero-visual {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text-overlay p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

.story-intro {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.story-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.insight-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.insight-cards {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.insight-card img {
    width: 100%;
    height: 240px;
}

.insight-card h4 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
}

.insight-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.solution-intro {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.solution-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.solution-content > p {
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--text-light);
}

.solution-visual-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.solution-text-block {
    flex: 1;
}

.solution-text-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.solution-image-block {
    flex: 1;
}

.solution-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-inline {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.testimonials-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.benefits-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-large {
    flex: 1 1 100%;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-large h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-large p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.benefit-small {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-small h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-small p {
    color: var(--text-light);
}

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

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

.services-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.services-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon img {
    width: 100%;
    height: 220px;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
}

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.btn-select-service:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.btn-submit {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
    font-size: 0.9rem;
}

.page-hero {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

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

.about-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.about-image-block {
    flex: 1;
}

.about-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.value-item p {
    color: var(--text-light);
}

.approach-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.approach-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.approach-step {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.approach-step p {
    color: var(--text-light);
}

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

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

.team-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.team-container > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.team-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-detailed {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-light);
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

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

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.contact-note p {
    color: var(--text-light);
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-message {
    margin-bottom: 4rem;
}

.thanks-message p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

#selected-service-info {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin-bottom: 4rem;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.next-steps-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.next-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.next-step p {
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

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

    .hero-text-overlay p {
        font-size: 1.1rem;
    }

    .problem-grid,
    .solution-visual-split,
    .about-container,
    .service-detail-card,
    .contact-container {
        flex-direction: column;
    }

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

    .benefit-small {
        flex: 1 1 100%;
    }

    .approach-step,
    .value-item {
        flex: 1 1 100%;
    }
}