/* Custom additions for the Detail Page */
.page-header {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(#121518b5, #013254b5), url("/img/about-2.jpg");
    background-position: center;
    background-size: contain;
    text-align: center;
}
.page-header h2 {
    color: #ffffff;
    font-size: 60px;
    text-transform: uppercase;
}
.detail-content {
    padding: 60px 0;
    line-height: 1.8;
    font-size: 17px;
}
.advantage-box {
    background: #f8f9fa;
    padding: 20px;
    border-left: 5px solid #0796fe; /* Your primary color */
    margin-bottom: 15px;
}
.sidebar-cta {
    background: #121518;
    padding: 30px;
    color: #fff;
    border-radius: 5px;
}
.sidebar-cta h3 {
    color: #0796fe;
}

#service-image {
    width: 100%;
    aspect-ratio: 4/2;
    object-fit: cover;
    border-block: 4px double #0796fe;
}

/* Highlights Section Styling */
.highlight-section {
    padding: 50px 0;
    background: #fdfdfd; /* Light contrast to the white main body */
}

.highlight-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #eee;
    border-bottom: 3px solid #0796fe; /* The Gold Signature */
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121518; /* Dark Navy/Black */
    color: #0796fe; /* Gold */
    font-size: 24px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.highlight-card h4 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #121518;
}

.highlight-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
