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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-minimal {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #546e7a;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    background-color: #e8f5e9;
}

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

.story-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.opener {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #34495e;
}

.problem-visual {
    display: flex;
    align-items: stretch;
    background-color: #fafafa;
}

.problem-visual img {
    width: 45%;
    object-fit: cover;
}

.problem-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.problem-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
}

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

.insight-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.insight-wrapper p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.insight-reveal {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
}

.science-backed {
    display: flex;
    padding: 5rem 0;
    background-color: #ffffff;
}

.science-content {
    flex: 1;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.science-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.science-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.citation {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
}

.citation:hover {
    text-decoration: underline;
}

.science-backed img {
    width: 40%;
    object-fit: cover;
    background-color: #f5f5f5;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #27ae60;
    font-style: normal;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.benefit-large {
    flex: 2;
}

.benefit-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f5f5f5;
    margin-bottom: 1.5rem;
}

.benefit-large h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-large p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
}

.benefit-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-small {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-small h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.benefit-small p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.product-showcase {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.product-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.product-grid-funnel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.product-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.product-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #2c3e50;
}

.product-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1rem;
    color: #546e7a;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem;
}

.cta-primary {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #229954;
}

.how-it-works {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.order-form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #546e7a;
}

.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: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #856404;
}

.references-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

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

.references-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.references-list {
    list-style-position: inside;
    font-size: 0.9rem;
    line-height: 1.8;
}

.references-list a {
    color: #27ae60;
    word-break: break-all;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.about-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero-lead {
    font-size: 1.3rem;
    color: #546e7a;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.team-approach {
    padding: 5rem 0;
    background-color: #ffffff;
    display: flex;
}

.team-approach img {
    width: 45%;
    object-fit: cover;
    background-color: #f5f5f5;
}

.approach-content {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.commitment-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.commitment-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.services-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.services-catalog {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    color: #546e7a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #229954;
}

.why-choose-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.why-choose-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.why-choose-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #546e7a;
}

.contact-main {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #546e7a;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.contact-additional {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.additional-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.help-topics {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.help-topic {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.help-topic h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.help-topic p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.thanks-hero {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #546e7a;
}

.thanks-details {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.next-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #546e7a;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.action-button {
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.action-button:hover {
    opacity: 0.9;
}

.action-button.primary {
    background-color: #27ae60;
    color: #ffffff;
}

.action-button.secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.thanks-note {
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.thanks-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #856404;
}

.thanks-additional {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
}

.additional-info a {
    color: #27ae60;
    font-weight: 600;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #546e7a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #546e7a;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

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

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
    font-style: italic;
    color: #95a5a6;
}

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

    .hero-content-left {
        max-width: 100%;
    }

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

    .problem-visual {
        flex-direction: column;
    }

    .problem-visual img {
        width: 100%;
        height: 250px;
    }

    .science-backed {
        flex-direction: column;
    }

    .science-backed img {
        width: 100%;
        height: 300px;
    }

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

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

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

    .team-approach {
        flex-direction: column;
    }

    .team-approach img {
        width: 100%;
        height: 300px;
    }

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

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

    .nav-links {
        gap: 1rem;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }
}