 /* Custom CSS for Feature Cards - Mobile and Professional Style */

/* Background and Main Section */
.pricing-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    background-color: #f8f9fa; /* A light grey background for a clean look */
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://picsum.photos/1920/1080?blur=5');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.pricing-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Responsive Grid Layout */
.feature-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default to 2 columns for mobile-first approach */
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .feature-grid-container {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
    }
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Card Styling */
.feature-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2), 0 8px 15px -5px rgba(0, 0, 0, 0.08);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease-in-out;
    border: none;
    color: white;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 15px 30px -8px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-wrapper {
    margin-left: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    stroke-width: 1.5;
    stroke: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.card-list {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    list-style-type: disc;
    list-style-position: inside;
    padding-right: 1.25rem;
    line-height: 1.8;
}

/* Card Color Variants */
.card-yellow-custom { background-color: #f7a73e; }
.card-blue-custom { background-color: #4da6ff; }
.card-green-custom { background-color: #5cb85c; }
.card-pink-custom { background-color: #ff66a3; }
.card-purple-custom { background-color: #8e44ad; }
.card-teal-custom { background-color: #00b894; }
.card-red-custom { background-color: #e74c3c; }
.card-orange-custom { background-color: #fd79a8; }