/* 
    Services Page (Bullion Trading Style) Specific Styles 
*/

.services-detail-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Title Header */
.page-title-header {
    height: 395px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #333; /* Fallback color */
    color: #fff;
    text-align: center;
    position: relative;
}

.page-title-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Make overlay transparent */
}

.page-title-header .container {
    position: relative;
    z-index: 2;
}

.page-title-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

/* Main Content Section */
.service-main-content {
    padding: 60px 0;
}

.content-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column layout */
    gap: 30px;
    
}

.feature-item {
    background-color: #f9f9f9; /* Light grey background for better contrast */
    border: 1px solid #e9e9e9;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #BFA44E;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07); /* Add a subtle shadow */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Enhance shadow on hover */
    transform: translateY(-5px); /* Add a slight lift effect */
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #BFA44E;
    margin: 0 0 15px 0;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}
