

/* Camp Details Section Styles */
.camp-details {
    background: var(--light-bg);
    padding: 4rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
}

.tech-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Schedule Section Styles */
.schedule {
    padding: 4rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-column {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1.5rem;
}

.schedule-column.full-width {
    grid-column: 1 / -1;
}

.schedule ul {
    list-style-type: none;
    padding: 0;
}

.schedule li {
    margin-bottom: 0.5rem;
}

.time {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Pricing Section Styles */
.pricing {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.special-offers {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.special-offers ul {
    list-style-type: none;
    padding: 0;
}

.pizza-friday {
    font-style: italic;
    margin-bottom: 1rem;
}

.refund-policy {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* FAQ Section Styles */
.faq {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    text-align: center;
    font-style: italic;
    color: var(--charcoal-bg);
    margin-bottom: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

/* Camp Refund Policy Section Styles */
.camp-refund-policy {
    padding: 4rem 0;
}

.camp-refund-policy h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.camp-refund-policy h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
}

.camp-refund-policy ul {
    list-style-type: none;
    padding: 0;
}

.camp-refund-policy li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.camp-refund-policy li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}