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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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: 1rem;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: white;
}

.btn-accept:hover {
    background-color: #357abd;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.header-asymmetric {
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-block {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-offset a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-offset a:hover {
    color: #4a90e2;
}

.ad-label {
    padding: 0.4rem 0.9rem;
    background-color: #f0f0f0;
    font-size: 0.85rem;
    border-radius: 3px;
    color: #666;
}

.hero-offset {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    overflow: hidden;
}

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin-left: 7%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: #555;
}

.hero-image-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: #d4e4f7;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

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

.intro-irregular {
    padding: 6rem 5%;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

.intro-content-small {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin-left: 10%;
}

.intro-content-small h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-content-small p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

.intro-image-overlap {
    flex: 1;
    min-width: 300px;
    position: relative;
    margin-top: -3rem;
    background-color: #e8f4f8;
}

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

.story-centered {
    padding: 5rem 5%;
    background-color: #f5f5f5;
}

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

.story-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.story-wrapper p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    display: block;
    object-fit: cover;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #357abd;
}

.problem-amplification {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: #1a1a1a;
    color: #ffffff;
}

.problem-block-left {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.problem-block-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.problem-block-left p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.problem-icon {
    font-size: 2rem;
    color: #4a90e2;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.insight-section {
    padding: 5rem 5%;
    background-color: #e8f4f8;
}

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

.insight-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.insight-wrapper p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.citation {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

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

.trust-building-cards {
    padding: 6rem 5%;
}

.trust-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.trust-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.trust-card-offset {
    margin-top: 3rem;
}

.trust-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #e0e0e0;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

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

.testimonials-inline {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.testimonial-block {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #4a90e2;
}

.testimonial-left {
    margin-left: 5%;
}

.testimonial-right {
    margin-left: auto;
    margin-right: 5%;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.benefits-reveal {
    padding: 6rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 2.6rem;
    color: #ffffff;
}

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

.benefit-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #4a90e2;
}

.benefit-offset-1 {
    margin-left: 5%;
}

.benefit-offset-2 {
    margin-left: 15%;
}

.benefit-offset-3 {
    margin-left: 10%;
}

.benefit-item h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
}

.services-pricing {
    padding: 6rem 5%;
    background-color: #f5f5f5;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #555;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    padding: 0.9rem 2rem;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #357abd;
}

.form-section {
    padding: 6rem 5%;
    background-color: #e8f4f8;
}

.form-container-offset {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-left: 15%;
}

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

.selected-service-display {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a90e2;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #357abd;
}

.final-cta-section {
    padding: 6rem 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #ddd;
}

.cta-btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-btn-large:hover {
    background-color: #357abd;
}

.footer-offset {
    padding: 4rem 5%;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

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

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #4a90e2;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem 0;
    border-top: 1px solid #444;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-references ol {
    margin-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-references ol li a {
    color: #4a90e2;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #4a90e2;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-diagonal {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    text-align: center;
}

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

.about-hero-content p {
    font-size: 1.3rem;
}

.about-story {
    padding: 6rem 5%;
}

.story-content-offset {
    max-width: 1000px;
    margin: 0 auto;
}

.about-image-float {
    width: 50%;
    height: auto;
    float: right;
    margin: 0 0 2rem 2rem;
    object-fit: cover;
    background-color: #e0e0e0;
}

.story-content-offset p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.8;
}

.about-philosophy {
    padding: 5rem 5%;
    background-color: #f5f5f5;
}

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

.philosophy-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #4a90e2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.philosophy-item p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.about-team-offset {
    padding: 6rem 5%;
}

.about-team-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.team-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.team-member-offset {
    margin-top: 4rem;
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    margin-bottom: 1.5rem;
    background-color: #e0e0e0;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.about-approach {
    padding: 5rem 5%;
    background-color: #e8f4f8;
}

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

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.services-hero {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.services-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-text p {
    font-size: 1.3rem;
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

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

.service-image-container {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

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

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.services-note {
    padding: 3rem 5%;
    background-color: #f5f5f5;
    text-align: center;
}

.note-content p {
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.3rem;
}

.contact-content {
    padding: 6rem 5%;
}

.contact-info-offset {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #4a90e2;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background-color: #e8f4f8;
    text-align: center;
}

.contact-note p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

.thanks-hero {
    padding: 8rem 5%;
    text-align: center;
}

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

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

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-next {
    margin-top: 4rem;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    background-color: #f5f5f5;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    flex-shrink: 0;
}

.step p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.back-home-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: #357abd;
}

.legal-content {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-offset {
        min-height: 500px;
    }

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

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

    .hero-image-diagonal {
        width: 100%;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    }

    .intro-irregular {
        flex-direction: column;
    }

    .intro-content-small {
        margin-left: 0;
    }

    .intro-image-overlap {
        margin-top: 0;
    }

    .problem-amplification {
        flex-direction: column;
        gap: 2rem;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 2rem;
    }

    .about-image-float {
        width: 100%;
        float: none;
        margin: 0 0 1.5rem 0;
    }

    .service-detail-block {
        flex-direction: column;
    }

    .service-left,
    .service-right {
        flex-direction: column;
    }

    .benefit-offset-1,
    .benefit-offset-2,
    .benefit-offset-3 {
        margin-left: 0;
    }
}
