/* Service Page Specifics */
.service-page {
    margin-top: 100px; /* Clears fixed navbar */
    min-height: 60vh;
}

.service-container {
    padding: 80px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-tag {
    color: #c5a059;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.service-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #333;
}

.feature-list li::before {
    content: "✓";
    color: #c5a059;
    margin-right: 15px;
    font-weight: bold;
}

.service-image img {
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 0px rgba(197, 160, 89, 0.1); /* Subtle gold accent shadow */
    border-radius: 4px;
}

.service-cta {
    margin-top: 40px;
}

/* Mobile Responsiveness for Services */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-text {
        order: 2; /* Puts text below image on mobile */
    }
    
    .service-image {
        order: 1;
    }

    .service-text h2 {
        font-size: 1.8rem;
    }
}
