.content-container {
  padding-top: 130px;
  max-width: 1600px;
}
.modal {
    display: none;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: auto; /* Allow scrolling for large images */
    padding: 0;
    max-width: none; /* Maximum width: 90% of the viewport width */
    max-height: none; /* Maximum height: 90% of the viewport height */
}
.modal img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
/* Close button styling */
/*
*/
.modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff5c5c;
    background-color: rgba(255, 92, 92, 0.5); /* Semi-transparent red */
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: background-color 0.3s ease;
}

.modal .close-btn:hover {
    background-color: #ff1f1f;
    background-color: rgba(255, 31, 31, 0.6); /* Slightly darker transparent red */
}

/* X icon styling */
.modal .close-btn:before {
    content: '×';
    font-size: 24px;
    font-weight: bold;
    line-height: 0;
}
/* Flexbox for side-by-side layout */
.content-container {
    display: flex;
    justify-content: space-between;
}

.info-container {
    width: 50%; /* 48% width to allow two items side by side */
}

/* Add some padding between lists */
ul {
    margin-top: 20px;
    line-height: 1.5;
    font-size: 16px;
}

/* Styling for the lists */
.list-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    .info-container {
        width: 100%; /* Full width for smaller screens */
        margin-bottom: 20px; /* Add spacing between stacked columns */
    }
}
