/* =========================================
   Financial Planning Page Styles
   ========================================= */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(34, 181, 115, 0.1) 50%, rgba(34, 181, 115, 0.04) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 181, 115, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 500;
}

/* Content Section */
.service-content {
    padding: 80px 0;
    background-color: var(--warm-white);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0.8;
    text-align: center;
    position: relative;
}

.content-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.content-image:hover img {
    transform: translateY(-10px);
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(34, 181, 115, 0.1);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(34, 181, 115, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
}

/* Decorative Elements */
.shape-green {
    position: absolute;
    z-index: -1;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .service-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px 20px;
    }
}