.product-group-section {
    padding: 60px 0;
}

.product-group-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-group-card .img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-group-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-group-card:hover .img-container img {
    transform: scale(1.1);
}

.product-group-card .content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-group-card .content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-group-card .content p {
    font-size: 16px;
    color: #6c757d;
    flex-grow: 1;
}

/* Fix for header and CTA */

.main {
    padding-top: 80px; /* Adjust this value based on the actual height of your navbar */
}
.hero-section {
    padding-top: 80px; /* Additional padding for the hero section */
}
.cta-section {
    padding: 80px 0;
    background-color: #00a8e6;
    color: #fff;
}
.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
}
.cta-section .button {
    background-color: #fff;
    color: #00a8e6;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-section .button:hover {
    background-color: #2c3e50;
    color: #fff;
}