
    :root {
    --prm-green-dark: #1b4332;
    --prm-green-mid: #2d6a4f;
    --prm-green-light: #b7e4c7;
    --white: #ffffff;
}

.vision-mission-area {
    background: radial-gradient(circle at top right, #f0f7f4, #ffffff);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Title */
.section-title__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--prm-green-dark);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.title-shape {
    width: 80px;
    height: 4px;
    background: var(--prm-green-mid);
    margin: 0 auto 60px;
    border-radius: 10px;
}

/* The Premium Card */
.vm-card-premium {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 60px 45px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.vm-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px -15px rgba(27, 67, 50, 0.15);
    background: var(--white);
}

/* Decorative Number */
.vm-number {
    position: absolute;
    top: 40px;
    right: 45px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(45, 106, 79, 0.08);
}

/* Icon Styling */
.vm-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--prm-green-dark), var(--prm-green-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 35px;
    box-shadow: 0 10px 20px rgba(45, 106, 79, 0.2);
}

.vm-title-premium {
    font-size: 28px;
    font-weight: 700;
    color: var(--prm-green-dark);
    margin-bottom: 20px;
}

.vm-desc-premium {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

/* List Styling */
.vm-list-premium {
    list-style: none;
    padding: 0;
    text-align: left;
}

.vm-list-premium li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--prm-green-dark);
}

.vm-list-premium li i {
    color: var(--prm-green-mid);
    margin-right: 15px;
    font-size: 18px;
}

.vm-list-premium li:last-child {
    border-bottom: none;
}
