/* Packages Section Styles */
.packages-section {
    padding: 40px 0;
    background-color: #fff;
    background-image: radial-gradient(#00B050 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: 0 0;
    background-color: rgba(255, 255, 255, 0.97);
    background-blend-mode: overlay;
    min-height: 60vh;
}

/* Reusing Section Header from about.css (if not imported, we define it here to be safe) */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    color: #00B050;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #00B050, transparent);
    opacity: 0.3;
}

/* Grid Layouts */
.packages-grid-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.packages-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Package Card Styles */
.package-card {
    background-color: #f0fdf4;
    /* Light green tint similar to image */
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid #00B050;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-price {
    font-size: 20px;
    color: #00B050;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-details li {
    position: relative;
    padding-left: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.package-details li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #00B050;
    font-weight: bold;
}

/* Divider Styles */
.packages-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #00B050;
    opacity: 0.3;
}

.packages-divider i {
    color: #00B050;
    font-size: 18px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .packages-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Make the last item span full width if odd number */
    .packages-grid-bottom .package-card:last-child {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .packages-section {
        padding: 60px 0;
    }

    .packages-grid-top,
    .packages-grid-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .packages-grid-bottom .package-card:last-child {
        grid-column: auto;
    }

    .package-card {
        padding: 30px 20px;
    }

    .package-price {
        font-size: 18px;
    }
}