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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 400;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.intro-flow {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 40px;
}

.intro-text p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #34495e;
}

.visual-break {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
}

.image-left {
    flex: 1;
    background-color: #f5f5f5;
}

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

.content-right {
    flex: 1;
}

.content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

.centered-insight {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 40px;
    text-align: center;
}

.centered-insight h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.insight-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-card p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.image-dominant {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 100px 0;
    background-color: #1a1a1a;
}

.image-dominant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.image-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 80px;
    max-width: 600px;
    color: white;
    background-color: rgba(0,0,0,0.6);
    padding: 40px;
}

.image-text-overlay p {
    font-size: 26px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.image-text-overlay span {
    font-size: 16px;
    opacity: 0.9;
}

.trust-builder {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 40px;
}

.trust-builder h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.process-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.process-item.offset-right {
    margin-left: 100px;
}

.process-item.offset-left {
    margin-right: 100px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    min-width: 80px;
}

.process-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-item p {
    font-size: 17px;
    color: #4a5568;
}

.benefits-reveal {
    display: flex;
    gap: 70px;
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 40px;
    align-items: center;
}

.benefit-visual {
    flex: 1;
    background-color: #f5f5f5;
}

.benefit-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.benefit-content {
    flex: 1;
}

.benefit-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: #4a5568;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-inline {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
}

.testimonial-block {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 5px solid #27ae60;
}

.testimonial-block p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 17px;
    color: #2c3e50;
}

.testimonial-author span {
    font-size: 15px;
    color: #7f8c8d;
}

.services-preview {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-intro {
    font-size: 19px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    color: #4a5568;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 20px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 17px;
    margin: 0 25px 20px;
    color: #4a5568;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 25px;
}

.cta-inline {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #229954;
    transform: scale(1.05);
}

.science-backed {
    background-color: #f8f9fa;
    padding: 100px 40px;
    margin: 120px 0;
}

.science-backed h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.science-backed > p {
    font-size: 19px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #4a5568;
}

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

.science-point {
    flex: 1;
    background-color: white;
    padding: 35px;
    border-top: 4px solid #3498db;
}

.science-point h4 {
    font-size: 21px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.science-point p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.form-section {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.disclaimer {
    max-width: 1100px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
}

.disclaimer p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-section h3 {
    font-size: 24px;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #ecf0f1;
}

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

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

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

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

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.references-list li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list li a:hover {
    color: #27ae60;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: white;
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

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

.cookie-accept:hover {
    transform: scale(1.05);
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.page-hero.small {
    height: 40vh;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-hero .hero-overlay h1 {
    font-size: 52px;
    color: white;
}

.about-intro {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.intro-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #4a5568;
}

.mission-visual {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
    align-items: center;
}

.mission-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.team-approach {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.team-approach h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-top: 4px solid #27ae60;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 17px;
    color: #4a5568;
}

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.value-block {
    flex: 1;
    background-color: white;
    padding: 40px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.value-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.impact-numbers {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.impact-numbers h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.number-item {
    flex: 1;
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
}

.big-number {
    font-size: 56px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.number-item p {
    font-size: 17px;
    color: #4a5568;
}

.cta-about {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
}

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

.intro-text {
    font-size: 19px;
    color: #4a5568;
}

.service-detail {
    display: flex;
    gap: 70px;
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
    align-items: center;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-image-right,
.service-image-left {
    flex: 1;
    background-color: #f5f5f5;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-detail h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-detail p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-detail ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-detail ul li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a5568;
}

.price-display {
    font-size: 20px;
    margin-top: 30px;
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
}

.price-display strong {
    font-size: 28px;
    color: #27ae60;
}

.service-cta {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
}

.secondary-button {
    display: inline-block;
    padding: 16px 35px;
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 15px;
}

.secondary-button:hover {
    background-color: #27ae60;
    color: white;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    border-radius: 8px;
}

.map-replacement {
    text-align: center;
}

.map-replacement h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.map-replacement p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 10px;
}

.contact-expectations {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.contact-expectations h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.expectation-item {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
    border-top: 4px solid #27ae60;
}

.expectation-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.expectation-item p {
    font-size: 17px;
    color: #4a5568;
}

.thanks-page {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.thanks-content {
    background-color: #f8f9fa;
    padding: 80px 60px;
    text-align: center;
    border-radius: 8px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 22px;
    color: #4a5568;
    margin-bottom: 50px;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 17px;
    color: #4a5568;
}

.thanks-service-confirmation {
    margin: 40px 0;
    padding: 25px;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.thanks-service-confirmation p {
    font-size: 18px;
    color: #2c3e50;
}

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

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page > p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page section {
    margin-bottom: 50px;
}

.legal-page section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #27ae60;
}

.legal-page section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-page section h4 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #34495e;
}

.legal-page section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.legal-page section ul,
.legal-page section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page section ul li,
.legal-page section ol li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-page section a {
    color: #3498db;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
}

.cookies-table td {
    padding: 15px;
    font-size: 16px;
    color: #4a5568;
    border-bottom: 1px solid #e0e0e0;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .visual-break,
    .benefits-reveal,
    .mission-visual,
    .service-detail,
    .contact-page {
        flex-direction: column;
    }

    .insight-grid,
    .science-grid,
    .values-content,
    .numbers-grid,
    .expectations-grid,
    .testimonial-inline {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .process-item.offset-right,
    .process-item.offset-left {
        margin-left: 0;
        margin-right: 0;
    }

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