.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #FAFAFA;
    padding: 2.5rem;
    transition: all 0.3s ease;
	border-radius: 15px;
}

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

.card h3 {
    margin-bottom: 1.5rem;
}

.card .pricing {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000;
}
 
.card .pricing a {
    font-size: 0.875rem;
    color: #666;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.card .schedule {
    color: #666;
    margin-bottom: 2rem;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.card ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.card ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .cards {
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }
}







.faq {
    padding: 0 0 4rem 0;
}

.faq-container { 
    max-width: 1200px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 24px;
    margin-bottom: 2rem;
    text-align: center;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-bottom: 1px solid #EAEAEA;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #000;
}

.accordion-header span {
    font-size: 1.1rem;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.accordion-item.active .accordion-content {
    height: auto;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
}

/* Add this JavaScript to make it work */


.card.side-card {
    border-radius: 5px;
    padding: 20px;
    margin-top: -10px;    
}
.card.side-card ul li {
    margin-bottom: 10px;
    padding: 0 0 0 30px;

}
.card.side-card ul li:before {
    background-color: transparent;

}

.card.side-card h3 {
    margin-bottom: 5px;
    font-weight: 400;
    color: #666;
}