body {
    margin: 0;
    background: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    background: #1C2D36;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 48px;
}

.logo-text {
    color: #4FA0CA;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.menu a:hover {
    color: #4FA0CA;
}

.button {
    background: #4FA0CA;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 16px 36px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.button:hover {
    background: #3498db;
}

.arrow {
    font-size: 1.3rem;
}

@media (max-width: 700px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }

    .menu {
        gap: 20px;
    }

    .button {
        width: 100%;
        justify-content: center;
    }
}

.slider-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1C2D36;
    padding: 60px 0 0 0;
    position: relative;
    min-height: 520px;
}

.slider-content {
    flex: 1 1 60%;
    padding-left: 60px;
    padding-bottom: 60px;
    z-index: 1;
}

.slider-list {
    list-style: disc inside;
    margin: 0 0 32px 0;
    padding: 0;
}

.slider-list li {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.slider-desc {
    color: #d3e3ea;
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 700px;
}

.slider-btn {
    background: transparent;
    color: #4FA0CA;
    border: 2px solid #4FA0CA;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.slider-btn:hover {
    background: #4FA0CA;
    color: #fff;
}

.slider-image-wrapper {
    flex: 1 1 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 400px;
    min-height: 400px;
    height: 100%;
    overflow: hidden;
}

.slider-bg {
    width: 100%;
    max-width: 480px;
    border-radius: 0 0 0 0;
    display: block;
    transform: translateX(50%);
}

.slider-absolute {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 70%;
    max-width: 340px;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .slider-section {
        flex-direction: column;
        padding: 40px 0 0 0;
        min-height: unset;
    }

    .slider-content {
        padding-left: 24px;
        padding-right: 24px;
        text-align: center;
    }

    .slider-image-wrapper {
        min-width: 260px;
        min-height: 260px;
        margin-top: 32px;
    }

    .slider-bg {
        max-width: 320px;
        transform: none;
    }

    .slider-absolute {
        max-width: 200px;
    }

    .slider-list li {
        font-size: 2.1rem;
    }
}

@media (max-width: 700px) {
    .slider-section {
        padding: 24px 0 0 0;
    }

    .slider-content {
        padding-left: 8px;
        padding-right: 8px;
    }

    .slider-bg {
        max-width: 100%;
    }

    .slider-absolute {
        max-width: 120px;
    }

    .slider-list li {
        font-size: 1.2rem;
    }
}

.slider-bottom-svg {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -2px;
    overflow: hidden;
    background: #1C2D36;
    z-index: 2;
}

.slider-bottom-svg svg {
    display: block;
    width: 100%;
    height: 120px;
}

@media (max-width: 700px) {

    .slider-bottom-svg,
    .slider-bottom-svg svg {
        height: 60px;
    }
}

.services-section {
    background: #fff;
    padding: 64px 0 80px 0;
    overflow-x: auto;
}

.services-header {
    text-align: left;
    margin-bottom: 48px;
    margin-left: 0;
    margin-right: 0;
}

.services-label {
    color: #4FA0CA;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #232b35;
    margin: 0 0 12px 0;
}

.services-desc {
    color: #6b7684;
    font-size: 1.1rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.service-card {
    flex: 1 1 0;
    max-width: 25%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.08);
    padding: 40px 20px 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: left;
}

.service-card:hover {
    box-shadow: 0 16px 40px 0 rgba(44, 62, 80, 0.16);
    transform: translateY(-6px) scale(1.03);
}

.service-card:nth-child(2),
.service-card:nth-child(4) {
    margin-top: 48px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #e74c3c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding-left: 0;
}

.service-icon img {
    width: 36px;
    height: 36px;
    margin-left: 0;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #232b35;
    margin: 0 0 8px 0;
    text-align: left;
}

.service-underline {
    width: 48px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
    margin: 0 0 18px 0;
}

.service-text {
    color: #6b7684;
    font-size: 1rem;
    text-align: left;
}

@media (max-width: 1100px) {
    .services-cards {
        gap: 20px;
    }

    .service-card {
        max-width: 50%;
        padding: 32px 14px 24px 14px;
    }
}

@media (max-width: 700px) {
    .services-section {
        padding: 32px 0 40px 0;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-header {
        text-align: left;
        margin-left: 8px;
        margin-right: 8px;
    }

    .services-cards {
        flex-direction: column;
        gap: 16px;
    }

    .service-card {
        max-width: 100%;
        padding: 28px 8px 20px 8px;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(4) {
        margin-top: 0;
    }
}

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

@media (max-width: 1300px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 1100px) {
    .container {
        max-width: 98vw;
    }

    .services-header {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .container {
        max-width: 100vw;
        padding: 0 4px;
    }

    .services-header {
        text-align: left;
        margin-left: 8px;
        margin-right: 8px;
    }
}

.outsource-section {
    background: #fff;
    padding: 64px 0 80px 0;
}

.outsource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.outsource-card {
    flex: 1 1 0;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 24px 0;
}

.outsource-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.outsource-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #232b35;
    margin: 0 0 10px 0;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
}

.outsource-text {
    color: #6b7684;
    font-size: 1rem;
    text-align: left;
    margin: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 1100px) {
    .outsource-cards {
        gap: 20px;
    }

    .outsource-card {
        max-width: 50%;
    }
}

@media (max-width: 700px) {
    .outsource-section {
        padding: 32px 0 40px 0;
    }

    .outsource-cards {
        flex-direction: column;
        gap: 16px;
    }

    .outsource-card {
        max-width: 100%;
        padding: 0 0 16px 0;
    }
}

.about-section-bg {
    width: 100vw;
    background: #1C2D36;
    padding: 64px 0;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.about-img {
    flex: 1 1 45%;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.12);
    display: block;
}

.about-content {
    flex: 1 1 55%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-label {
    color: #4FA0CA;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px 0;
}

.about-desc {
    color: #d3e3ea;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .about-section {
        flex-direction: column;
        gap: 32px;
    }

    .about-img,
    .about-content {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 0 1rem;
    }

    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 700px) {
    .about-section-bg {
        padding: 32px 0;
    }

    .about-section {
        gap: 18px;
    }

    .about-title {
        font-size: 1.4rem;
    }

    .about-desc {
        font-size: 1rem;
    }
}

.footer-section {
    width: 100%;
    background: #fff;
    padding: 56px 0 40px 0;
    text-align: center;
}

.footer-label {
    color: #4FA0CA;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #232b35;
    margin: 0 0 18px 0;
}

.footer-address {
    font-size: 1.05rem;
    font-weight: 700;
    color: #6b7684;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.footer-desc {
    color: #8a929b;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 600px;
}

@media (max-width: 700px) {
    .footer-section {
        padding: 32px 0 24px 0;
    }

    .footer-title {
        font-size: 1.4rem;
    }

    .footer-address,
    .footer-desc {
        font-size: 0.98rem;
    }
}