﻿/*=================================
        Service Details
==================================*/

.service-details {
    padding: 90px 0;
    background: #f8f9fc;
}

.service-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: start;
}

.service-info {
    background: transparent;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.service-subtitle {
    color: #2d248d;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.service-info h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 20px;
    color: #666;
    line-height: 2;
    margin-bottom: 25px;
}

.service-info ul {
    padding: 0;
    list-style: none;
}

.service-info li {
    margin-bottom: 15px;
    font-size: 20px;
}

.service-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    position: sticky;
    top: 120px;
}

    .service-sidebar h3 {
        margin-bottom: 20px;
        color: #2d248d;
    }

    .service-sidebar p {
        margin-bottom: 18px;
        font-size: 19px;
    }

.book-btn {
    display: block;
    width: 100%;
    background: #2d248d;
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

    .book-btn:hover {
        background: #4338ca;
    }
