.hero-service {
    height: 500px;
    background-image: url("");
    background-size: cover;
    background-position: center;
    align-items: center;
    position: relative;
    background-color: #292727;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    text-align: center;
}

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

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.2em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.service-image {
    flex: 0 0 150px;
    position: relative;
}

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

.service-content {
    padding: 20px;
    flex: 1;
}

.service-title {
    color: #2c3e50;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-items {
    margin-left: 15px;
}

.service-item {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-item:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        flex: 0 0 120px;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex-direction: column;
    }

    .service-image {
        height: 150px;
        flex: 0 0 auto;
    }
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
}

.main-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.main-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
}

.header-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.content-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.solutions-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-image {
    flex: 0 0 40%;
    position: sticky;
    top: 20px;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solution-card {
    background: #328c40;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

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

.solution-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-content {
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .content-section {
        flex-direction: column;
    }

    .solution-image {
        order: -1;
        margin-bottom: 30px;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

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