/* Service Sections */
.service-section {
    background: linear-gradient(135deg, #2e2e2e 0%, #242424 50%, #2e2e2e 100%);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 102, 0, 0.08);
}

.service-section h2 {
    color: #fff;
    margin-bottom: 28px;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FF6600 0%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.4);
}

.service-section h3 {
    color: #FF6600;
    margin-top: 32px;
    margin-bottom: 18px;
    font-size: 1.5em;
    font-weight: 600;
    text-shadow: 0 1px 12px rgba(255, 102, 0, 0.2);
}

.service-section p {
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 300;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #c0c0c0;
    font-size: 1.5rem;
    font-weight: 300;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF6600;
    font-size: 1.4rem;
    line-height: 1;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px auto;
    max-width: 1100px;
}

.logo-card {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 102, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-card:hover {
    transform: translateY(-8px) scale(1.03);
    /* box-shadow: 0 18px 40px rgba(255, 102, 0, 0.2); */
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cta-section {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 60px;
}

.cta-section p{
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 15px;

}

.cta-section .button-container {
    margin-top: 5px;
}

.overview-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
}