.header {
    background-color: #fff;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header__logo-bg {
    background: #1f1f1f;
    height: 106px;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.header__logo {
    height: 106px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
    margin-left: 96px;
}

.header .container {
    position: relative;
    display: flex;
    align-items: center;
    height: 106px;
    padding: 0;
    max-width: 100vw;
    width: 100vw;
    margin: 0;
}

.header__logo:hover {
    color: #ff0000;
}

.service {
    padding: 60px 0;
    background-color: var(--color-white);
}

.service__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service__title {
    font-size: 36px;
    color: var(--color-red);
    margin-bottom: 20px;
}

.service__subtitle {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
}

.service__text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-black);
}

.service__text h2 {
    font-size: 24px;
    color: var(--color-red);
    margin: 30px 0 20px;
}

.service__text p {
    margin-bottom: 20px;
}

.service__text ul,
.service__text ol {
    margin: 20px 0;
    padding-left: 20px;
}

.service__text li {
    margin-bottom: 15px;
}

.service__text strong {
    color: var(--color-red);
}

.service__image {
    text-align: center;
}

.service__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #1f1f1f;
    color: #fff;
    padding: 40px 0;
}

.footer__content {
    text-align: center;
}

.footer__text {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .service__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service__content {
        padding: 0 15px;
    }
    
    .service__title {
        font-size: 28px;
    }
    
    .service__subtitle {
        font-size: 18px;
    }
    
    .service__text {
        font-size: 16px;
    }
    
    .service__text h2 {
        font-size: 20px;
    }

    .header {
        padding: 15px 0;
    }

    .header__logo {
        font-size: 20px;
    }
} 