.custom-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between columns */
}

.left-column {
    flex: 7; /* Flex-grow ratio for the left column */
    padding: 6x;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between content sections */
}

.right-column {
    flex: 3; /* Flex-grow ratio for the right column */
    padding: 6px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}




/* Flex container for image and info */
.image-info-container {
    display: flex;
    flex-wrap: wrap; /* To handle responsiveness */
    gap: 20px; /* Add space between image and info */
}

.image-container, .info-container {
    flex: 1; /* Each takes equal width (50%) */
    max-width: 50%; /* Ensure it does not exceed 50% */
}

.image-container img {
    width: 100%; /* Make the image fill the container */
    height: auto; /* Keep the image's aspect ratio */
}

@media (max-width: 768px) {
    .image-container, .info-container {
        max-width: 100%; /* Full width when stacked */
    }
}

/* Package Name Styling */
.package-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333; /* Darker text for contrast */
}

/* Package Hours Styling */
.package-hours {
    font-size: 1.2rem;
    color: #d69515; /* Accent color for important information */
    margin-bottom: 8px;
}

/* Package Description Styling */
.package-description {
    font-size: 1rem;
    line-height: 1.5; /* Increased line height for better readability */
    color: #666; /* Softer gray for less emphasis */
    margin-top: 12px;
    border-left: 4px solid #d69515; /* Vertical accent border */
    padding-left: 10px;
}
.package-description strong {
    display: block; /* Ensure "Description:" is on its own line */
    font-weight: 600;
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-container {
        flex-direction: column; /* Stack columns vertically on small screens */
    }

    .left-column {
        /* Ensure the left column stacks its content vertically */
        display: flex;
        flex-direction: column;
    }

    .image-info-container {
        flex-direction: column; /* Stack image and info vertically on small screens */
    }

    .info-container {
        order: 2; /* Move info-container to the bottom */
        margin-top: 20px; /* Space above the info-container */
    }

    .image-container {
        order: 1; /* Ensure image-container remains at the top */
    }

    .right-column {
        width: 100%; /* Make the right column full width when stacked */
    }
}

.program-objectives {
    margin-top: 20px; /* Space above the Program Objectives */
}

.program-objectives h2 {
    margin-bottom: 10px; /* Space below the heading */
}

.program-objectives p {
    margin: 0; /* Remove default margin from paragraph */
}

.registration-detail {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.price {
    font-size: 20px;
    font-weight: bold;
}

.hours {
    font-size: 16px;
    font-weight: 400;
}

.add-to-cart {
    display: block;
    padding: 10px 20px;
    background-color:var(--darkblue-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.add-to-cart:hover {
background-color:var(--blue-color);
}

@media screen and (max-width: 768px) {
    .custom-container {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
    }

    .detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hours {
        margin-top: 5px;
    }

    .add-to-cart-container {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-top: 20px;
    }
}






.package-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.package-name {
    font-size: 24px;
    font-weight: bold;
    color: #007bff; /* Blue color */
    margin-bottom: 10px; /* Space below the package name */
}

.package-hours {
    font-size: 16px;
    color: #333; /* Darker color for hours */
}




.course-details { 
    border-radius: 8px; /* Rounded corners */ 
    margin-top: 20px; /* Space above the section */
}

.course-details h2 {
    font-family: 'Poppins', sans-serif; /* Font style */
    color: #333; /* Dark color for headings */
    margin-bottom: 15px; /* Space below the heading */
}

.course-list {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
}

.course-item {
    background-color: #fff; /* White background for each course item */
    border: 1px solid #ddd; /* Border around each item */
    border-radius: 5px; /* Slightly rounded corners */
    margin-bottom: 15px; /* Space between items */
    padding: 15px; /* Padding inside each item */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.course-name {
    font-size: 1.2em; /* Larger font size for course name */
    color: #007bff; /* Blue color for course name */
}

.course-info {
    font-size: 0.9em; /* Smaller font size for info */
    color: #555; /* Gray color for text */
}


.course-hours,
.course-price {
  font-weight: bold;
  color: #555;
  margin: 4px 0;
}

.course-hours span,
.course-price span {
  color: var(--darkblue-color);
}e