/* Color Scheme */
:root {
    --pale-yellow: #FFFACD;
    --pale-green: #F0FFF0;
    --sunrise: #FFCC80;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-white: #ffffff;
    --primary-btn: #FFB74D;
    --primary-btn-hover: #FFA726;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-dark);
    text-decoration: none;
}

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 20px;
    font-weight: 400;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

p {
    margin-bottom: 15px;
}

.text-center { text-align: center; }
.lead { font-size: 1.2rem; }

/* Backgrounds */
.bg-pale-yellow { background-color: var(--pale-yellow); }
.bg-pale-green { background-color: var(--pale-green); }
.bg-sunrise { background-color: var(--sunrise); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-btn);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn:hover { background-color: var(--primary-btn-hover); }
.btn-full { width: 100%; }
.btn-small { padding: 8px 16px; font-size: 0.9rem; }
.btn-outline { background: transparent; border: 1px solid var(--text-dark); }
.btn-text { background: transparent; padding: 8px; text-decoration: underline; }

/* Header */
.site-header {
    background-color: var(--pale-green);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a:hover {
    color: var(--primary-btn);
}

/* Banner */
.banner {
    position: relative;
    padding: 60px 20px;
    background-color: var(--pale-yellow);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-content {
    flex: 1 1 400px;
    padding-right: 40px;
}

.banner-image {
    flex: 1 1 400px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Content Blocks */
.content-block {
    padding: 80px 20px;
}

.flex-row, .flex-row-reverse {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.block-image, .block-text {
    flex: 1 1 400px;
}

.block-image img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.block-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Accordions */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.accordion-header {
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.schedule-table th, .schedule-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.schedule-table th {
    background-color: var(--pale-green);
    font-weight: bold;
}

/* Cards */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    border: 1px solid #eee;
}

.price-card.highlight {
    border: 2px solid var(--primary-btn);
    transform: scale(1.05);
}

.price-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-btn);
    margin: 20px 0;
}

/* Text Only Block & Form */
.text-only-block {
    padding: 100px 20px;
}

.form-wrapper {
    max-width: 500px;
    margin: 40px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

/* Reviews */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.review-item {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--pale-yellow);
    padding: 30px;
    border-radius: 8px;
    font-style: italic;
}

.review-item h4 {
    margin-top: 15px;
    font-style: normal;
    text-align: right;
}

/* Footer */
.site-footer {
    background-color: #f9f9f9;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info, .footer-links, .footer-social {
    flex: 1 1 250px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: var(--primary-btn);
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-content {
    flex: 1 1 400px;
    margin-right: 20px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.hidden {
    display: none !important;
}

.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}

.cookie-options label {
    display: block;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}