/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e5a9f;
    --primary-red: #ff0000;
    --text-dark: #000000;
    --text-white: #ffffff;
    --bg-light: #f8f7f6;
    --font-en: 'Montserrat', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
}

body {
    font-family: var(--font-jp);
    color: var(--text-dark);
    background: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(102, 102, 102, 0) 100%);
    padding: 20px 48px;
    z-index: 1000;
    transition: all 0.8s cubic-bezier(0.4, 0.4, 0, 1);
    transition-delay: 1.4s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.logo-link {
    text-decoration: none;
    transition: all 0.3s;
}

.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-link:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-white);
    text-decoration: none;
    padding: 0 12px;
    transition: all 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(41, 98, 255, 0.7) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.2s cubic-bezier(0.42, 0, 0.6, 1.19);
    transition-delay: 0.8s;
    z-index: 2;
    animation: overlayReveal 1s 0.5s cubic-bezier(0.42, 0, 0.6, 1.19) forwards;
}

@keyframes overlayReveal {
    to {
        transform: scaleX(1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    padding: 180px 48px 96px;
    color: var(--text-white);
    text-align: left;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 96px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.1;
    color: var(--text-white);
    opacity: 0;
    transform: translateY(72px);
    animation: fadeInUp 0.8s 0.6s forwards;
}

.hero-title {
    font-family: var(--font-jp);
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(72px);
    animation: fadeInUp 0.8s 0.8s forwards;
}

.hero-description {
    opacity: 0;
    transform: translateY(48px);
    animation: fadeInUp 1s 1.2s forwards;
}

.hero-heading {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.hero-subheading {
    font-family: var(--font-jp);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero-body {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 13px;
}

.hero-cta {
    display: inline-block;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 12px 48px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.6s;
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-cta:hover {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    transform: translate(10px, 10px);
}

.scroll-indicator {
    position: absolute;
    bottom: 0;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(48px);
    animation: fadeInUp 0.8s 1.4s forwards;
}

.scroll-text {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-white);
    writing-mode: vertical-rl;
    transition: opacity 0.3s;
}

.scroll-text:hover {
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 40%;
    background: linear-gradient(180deg, var(--text-white) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Services Section */
.section-title {
    font-family: var(--font-en);
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(48px);
    animation: fadeInUp 1s 0.3s forwards;
}

.section-title.red {
    color: var(--primary-red);
}

.section-subtitle {
    font-family: var(--font-jp);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: 96px;
    opacity: 0;
    animation: fadeIn 0.8s 0.5s forwards;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 120px;
}

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

.service-image {
    position: relative;
    flex: 0 0 55%;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.service-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: center right;
    z-index: 2;
    animation: slideOut 1s 0.5s forwards;
}

@keyframes slideOut {
    to {
        transform: scaleX(0);
    }
}

@keyframes coverReveal {
    to {
        transform: scaleX(1);
    }
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 48px 0;
}

.service-title {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(48px);
    animation: fadeInUp 1s 0.3s forwards;
}

.service-description {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeIn 1s 0.4s forwards;
}

/* Technology Section */
.technology-section {
    background: var(--bg-light);
    padding: 96px 48px;
}

.technology-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.technology-image {
    position: relative;
    width: 643px;
    height: 395px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeIn 0.6s 0.3s forwards;
}

.tech-image-overlay {
    /* Removed blue overlay animation */
    display: none;
}

.technology-description {
    font-family: var(--font-jp);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-align: center;
    max-width: 834px;
    opacity: 0;
    animation: fadeIn 0.8s 0.5s forwards;
}

/* Solutions Section */
.solutions-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 48px 96px;
}

.solutions-container {
    max-width: 1280px;
    margin: 0 auto;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 1s 0.3s forwards;
}

.solution-card {
    flex: 0 0 calc(50% - 24px);
    background: var(--text-white);
    padding: 64px 48px;
    border-radius: 10px;
    box-shadow: 30px 40px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.8s;
}

.solution-number {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.solution-title {
    font-family: var(--font-jp);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 16px;
}

.solution-description {
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* Company Info Section */
.company-info-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 96px 48px 216px;
}

.company-info-container {
    max-width: 1280px;
    margin: 0 auto;
}

.company-info-content {
    display: flex;
    gap: 48px;
}

.company-details {
    flex: 0 0 559px;
}

.company-info-row {
    display: flex;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 1s 0.3s forwards;
}

.info-label {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.6;
    width: 80px;
    margin-right: 12px;
}

.info-value {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.6;
    flex: 1;
}

.company-map {
    flex: 0 0 481px;
    height: 394px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('https://maps.googleapis.com/maps/api/staticmap?center=35.6465,139.7102&zoom=15&size=480x400&markers=color:blue%7C35.6465,139.7102&key=AIzaSyDUMmSsssssssssssssssssssssssssss');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    transition: transform 3s ease-in-out;
}

.map-placeholder:hover {
    transform: scale(1.05);
}

/* Contact CTA Section */
.contact-cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 96px;
    position: relative;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 90, 159, 0.5);
    z-index: 1;
}

.contact-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-family: var(--font-jp);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 1s 0.3s forwards;
}

.contact-cta-button {
    display: inline-block;
    background: var(--text-white);
    color: var(--text-dark);
    padding: 12px 48px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.6s;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
}

.contact-cta-button:hover {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    transform: translate(10px, 10px);
}

/* Footer */
.footer-section {
    background: var(--text-dark);
    padding: 24px 48px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.footer-link {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-white);
    text-decoration: none;
    padding: 0 12px;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.5;
}

.footer-copyright {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-white);
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 840px) {
    .fixed-header {
        padding: 24px;
    }

    .logo-text {
        font-size: 16px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        width: 30px;
        height: 3px;
        background: var(--text-white);
    }

    .hero-content {
        padding: 144px 48px 96px;
    }

    .hero-subtitle, .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 48px;
    }

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

    .service-image {
        flex: none;
        width: 100%;
        height: 320px;
    }

    .service-content {
        flex: none;
        width: 100%;
    }

    .company-info-content {
        flex-direction: column-reverse;
    }

    .company-details, .company-map {
        flex: none;
        width: 100%;
    }

    .solution-card {
        flex: 0 0 calc(90% - 48px);
    }
}

@media screen and (max-width: 540px) {
    .fixed-header {
        padding: 24px;
    }

    .hero-content {
        padding: 144px 24px 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-body {
        font-size: 28px;
    }

    .hero-heading {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .service-image {
        height: 240px;
    }

    .service-title {
        font-size: 32px;
    }

    .service-description {
        font-size: 14px;
    }

    .solution-card {
        flex: none;
        width: 100%;
        padding: 24px;
    }

    .solution-number {
        font-size: 28px;
    }

    .solution-title {
        font-size: 14px;
    }

    .solution-description {
        font-size: 12px;
    }

    .contact-cta-section {
        padding: 48px 24px;
    }

    .contact-cta-container {
        flex-direction: column;
    }

    .cta-heading {
        font-size: 20px;
        margin-bottom: 24px;
    }
}

/* Service subtitle */
.service-subtitle {
    font-family: var(--font-jp);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

/* Solution title en */
.solution-title-en {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

/* Technology CTA */
.technology-cta-text {
    font-family: var(--font-jp);
    font-size: 14px;
    line-height: 1.6;
    margin: 32px auto;
    max-width: 800px;
    text-align: center;
}

.technology-cta {
    display: inline-block;
    padding: 16px 48px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.technology-cta:hover {
    background: #1a4d8f;
}

/* Contact CTA improvements */
.cta-subheading {
    font-family: var(--font-jp);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
}

/* Solution Intro Section - Dark Background */
.solution-intro-section {
    background: linear-gradient(180deg, rgba(20, 40, 70, 0.95) 0%, rgba(10, 20, 40, 0.98) 100%),
                url('assets/images/real/real_image_1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 48px 60px;
    text-align: center;
    position: relative;
}

.solution-intro-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title.white {
    color: white;
}

.section-subtitle.white {
    color: white;
}

.section-subtitle.center {
    text-align: center;
    margin: 0 auto;
}

/* Services Section - Light Background */
.services-section {
    background: #f8f7f6;
    padding: 140px 48px 96px;
}

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

.hero-section.loaded .hero-overlay {
    transform: scaleX(1);
}

/* VALUES section - larger title */
.value-title-en {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

/* ABOUT Section - New Layout */
.about-section {
    background: #f8f7f6;
    padding: 140px 48px 96px;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.about-content {
    flex: 0 0 50%;
}

.about-details {
    margin-top: 48px;
}

.about-info-row {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #ddd;
}

.about-label {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 700;
    min-width: 120px;
    color: var(--text-dark);
}

.about-value {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-image {
    flex: 0 0 calc(50% - 80px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer with Contact */
.footer-section {
    background: var(--text-dark);
    padding: 64px 48px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-contact {
    text-align: center;
    margin-bottom: 48px;
}

.footer-contact-title {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-contact-subtitle {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 32px;
}

.footer-contact-button {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: var(--text-white);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    line-height: 64px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-white);
    text-align: center;
}

/* Image Gallery Section */
/* CTA Banner Section (before Mission) */
.cta-banner-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 60, 85, 0.88);
    z-index: 1;
}

.cta-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    padding: 96px 48px;
    text-align: center;
    color: var(--text-white);
}

.cta-banner-title {
    font-family: var(--font-jp);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--text-white);
}

.cta-banner-subtitle {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    color: var(--text-white);
    opacity: 0.95;
}

.cta-banner-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--text-white);
    color: var(--primary-blue);
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-banner-section {
        min-height: 320px;
    }
    
    .cta-banner-container {
        padding: 64px 24px;
    }
    
    .cta-banner-title {
        font-size: 24px;
    }
    
    .cta-banner-subtitle {
        font-size: 14px;
    }
    
    .cta-banner-button {
        padding: 14px 36px;
        font-size: 14px;
    }
}

.footer-logo {
    text-align: center;
    margin-bottom: 48px;
}

.footer-logo img {
    max-width: 400px;
    height: auto;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo img {
        max-width: 280px;
    }
}

/* Solution Gallery - Integrated into Solution Section */
.solution-gallery {
    display: flex;
    gap: 0;
    margin-top: 48px;
    width: 100%;
    max-width: 1280px;
    height: 200px;
    overflow: hidden;
}

.solution-gallery .gallery-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.solution-gallery .gallery-image:first-child {
    background-position: center left;
}

.solution-gallery .gallery-image:last-child {
    background-position: center right;
}

/* Responsive */
@media (max-width: 768px) {
    .solution-gallery {
        height: 150px;
        margin-top: 32px;
    }
}
