/* Service Page Specific Styles */
:root {
    --primary-color: #fe5ade;
    --secondary-color: #460080;
    --text-color: #333;
    --white: #ffffff;
}

.service-hero {
    padding: 220px 0 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    text-align: center;
    border-bottom-left-radius: 50% 100px;
    border-bottom-right-radius: 50% 100px;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(70, 0, 128, 0.8) 0%, rgba(254, 90, 222, 0.4) 100%);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.service-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Service Details Section */
.service-details {
    padding: 100px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.details-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.details-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.details-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(70, 0, 128, 0.1);
}

/* Features Grid */
.service-features {
    padding: 100px 0;
    background: #fdf6ff;
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.s-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.s-feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(254, 90, 222, 0.1);
    transition: transform 0.3s ease;
}

.s-feature-card:hover {
    transform: translateY(-10px);
}

.s-feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.s-feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 160px 0 80px;
    }
}