        /* Service List Item Styles */
        .service-list-item {
            transition: all 0.3s ease;
        }

        .service-list-item:hover {
            transform: translateY(-5px);
        }

        .service-list-item .icon-box {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            color: white;
            font-size: 28px;
            flex-shrink: 0;
        }

        .service-list-item h4 {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .service-list-item p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Plan Card Styles */
        .plan-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .plan-card:hover {
            border-color: #667eea;
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
        }

        .plan-card h3 {
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .plan-card h3 i {
            margin-right: 8px;
        }

        /* Feature Box Styles */
        .feature-box {
            padding: 20px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .feature-box i {
            color: #ffc107;
        }

        .feature-box h5 {
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        /* Vision Item Styles */
        .vision-item h4 {
            font-weight: 700;
            color: #1a1a1a;
            font-size: 18px;
        }

        .vision-item p {
            line-height: 1.8;
            color: #666;
        }

        /* Section Padding */
        .what-we-do-area,
        .amc-plans-area,
        .future-focus-area,
        .our-vision-area {
            position: relative;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .service-list-item .icon-box {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .service-list-item h4 {
                font-size: 16px;
            }

            .feature-box {
                padding: 15px;
            }

            .plan-card {
                margin-bottom: 20px;
            }
        }