/* Pricing section with custom background */
.pricing-background {
    background-image: url('../img/euro-invst.jpg'); /* Background image */
    background-size: cover; /* Ensures the image covers the section */
    background-position: center; /* Center the image */
    height: 100vh; /* Full viewport height to avoid overlap */
    padding-top: 2rem; /* Padding at the top */
    padding-bottom: 2rem; /* Padding at the bottom */
    position: relative; /* Ensures proper positioning */
    z-index: 1; /* Ensures it's above other sections */
}

/* Add more space between sections */
.next-section {
    margin-top: 5rem; /* Increased margin to push it further down */
    padding: 2rem; /* Padding for the next section */
    background-color: #f9f9f9; /* Light background for separation */
    border-radius: 10px; /* Rounded corners for visual appeal */
}

/* Center the text in pricing background */
.pricing-background h2 {
    font-size: 2rem;
    color: #fff;
}

.pricing-background p {
    font-size: 1rem;
    color: #ccc;
}

/* Pricing card styles */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-list li {
    margin-bottom: 0.8rem;
    color: #6c757d;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    border-radius: 20px;
}

.gradient-custom {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

/* Container for better layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing card layout */
.row-cols-md-3 .col {
    margin-bottom: 2rem;
}
