/* Common styles for all simplified pages */

/* Page Header */
.page-header {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-color: #3498db; /* Sky blue from SGD logo */
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.page-header__inner {
    position: relative;
    z-index: 1;
}

.page-header__inner h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Section Styling */
.section-title {
    margin-bottom: 40px;
}

.section-title__tagline {
    display: block;
    font-size: 18px;
    color: #3498db; /* Sky blue from SGD logo */
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.section-title__title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.section-title.text-center {
    text-align: center;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Card Styles */
.card-style {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

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

/* Image Styles */
.img-fluid-custom {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Styles */
.icon-style {
    height: 80px;
    width: 80px;
    background-color: #3498db; /* Sky blue from SGD logo */
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .page-header__inner h2 {
        font-size: 36px;
    }
    
    .section-title__title {
        font-size: 28px;
    }
    
    .section-title__tagline {
        font-size: 16px;
    }
}