/* Services Page Styles */

.services-content {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.service-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-text h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-text h3 {
    font-size: 24px;
    color: #ffffff;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.service-text p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .service-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .service-text h2 {
        font-size: 28px;
    }

    .service-text h3 {
        font-size: 20px;
    }
}