/* Container for the two-column layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal-width columns */
    gap: 20px; /* Space between columns */
}

/* Individual column items */
.column-item {
    padding: 15px;
    border-radius: 5px; /* Rounded corners */
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.column-item:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
}

/* Images within column items */
.column-item img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd; /* Separator between image and text */
    margin-bottom: 15px;
}

/* Headings within column items */
.column-item h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

/* Paragraphs within column items */
.column-item p {
    font-size: 1em;
    color: #666;
}

/* Links within column items */
.column-item a {
    text-decoration: none;
    color: #007BFF; /* Bootstrap primary blue */
    font-weight: bold;
}

.column-item a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
}




.resources-section {
    text-align: center;
    padding: 40px 0;
}
.resources-section .section-title {
    font-size: 24px;
    margin-bottom: 20px;
}
.resources-section .row {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.resources-section .col {
    flex: 1;
    max-width: 300px;
}
.resources-section .resource-item {
    text-align: center;
}
.resources-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.resources-section h3 {
    margin-top: 10px;
    font-size: 18px;
}


.classic-package-items {
    text-align: center;
    padding: 20px;
}
.classic-package-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.package-item {
    text-align: center;
    width: 200px;
}
.package-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.package-item p {
    margin-top: 10px;
    font-weight: bold;
}


.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.accordion-button {
    background-color: #f8f9fa;
    font-weight: bold;
}
.accordion-body {
    padding: 15px;
    background-color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.faq-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}
.single-row-layout {
    display: flex;
    gap: 20px; /* Space between items */
    overflow-x: auto; /* Enable horizontal scrolling if needed */
    white-space: nowrap; /* Prevents wrapping */
}

.public-domain-item {
    flex: 1; /* Adjusts width dynamically */
    min-width: 200px; /* Ensures items are not too small */
    max-width: 300px;
    text-align: center;
}

.public-domain-item img {
    width: 100%; /* Responsive images */
    height: auto;
    border-radius: 8px;
}


.four-column-layout {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: nowrap; /* Prevents wrapping */
    overflow: hidden; /* Prevents any overflow */
}



.column-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.three-column-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.festival-clinicians-section {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.clinicians-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line if needed */
    gap: 20px;
    justify-content: center;
}

.clinician-item {
    flex: 1 1 200px; /* Each item takes equal space but wraps if necessary */
    max-width: 250px;
    text-align: center;
}





