body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
}
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://www.institutefordigitaltransformation.org/wp-content/uploads/CFO-of-the-Future-resized-compressed.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}
.service-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.service-image {
    height: 220px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
    transform: scale(1.05);
}
.team-member {
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-5px);
}
.team-image {
    height: 250px;
    width: 250px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #3B82F6;
    margin: 0 auto;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gradient-bg {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}
.btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    transform: translateY(-2px);
}
.testimonial {
    background-color: #f8fafc;
    border-left: 4px solid #3B82F6;
}
.section-heading {
    position: relative;
    padding-bottom: 15px;
}
.section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3B82F6;
}
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.workdesign.com/wp-content/uploads/2022/08/Financial-360_-Clarence-Butts-Photography-6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.service-icon {
    background-color: #EFF6FF;
    color: #3B82F6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: -30px auto 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}