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

:root {
    --primary-color: #8B4513;
    --secondary-color: #DEB887;
    --accent-color: #CD853F;
    --text-dark: #2F1B14;
    --text-light: #8B7355;
    --background-light: #FDF5E6;
    --white: #FFFFFF;
    --shadow: 0 8px 32px rgba(139, 69, 19, 0.1);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-container {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cookie-message {
    flex: 1;
}

.cookie-message h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-message p {
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.cookie-btn.accept:hover {
    background: #D2B48C;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.decline:hover {
    background: white;
    color: var(--primary-color);
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-symbol {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.tagline {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background-light) 0%, #F5DEB3 50%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #A0522D;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Journey Section */
.journey {
    padding: 120px 0;
    background: var(--white);
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.journey-text h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.5;
}

.journey-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.journey-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 25px 15px;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.journey-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.journey-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.image-caption p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

/* Classes Section */
.classes {
    padding: 120px 0;
    background: var(--background-light);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.class-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
}

.class-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
}

.class-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.class-card:hover .class-image img {
    transform: scale(1.05);
}

.class-level {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.class-content {
    padding: 35px 30px;
}

.class-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.class-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.class-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.class-details span {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Schedule Section */
.schedule {
    padding: 120px 0;
    background: var(--white);
}

.schedule-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-grid {
    display: grid;
}

.schedule-header {
    display: grid;
    grid-template-columns: 120px repeat(7, 1fr);
    background: var(--primary-color);
    color: white;
}

.schedule-header > div {
    padding: 25px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.schedule-row {
    display: grid;
    grid-template-columns: 120px repeat(7, 1fr);
    border-bottom: 1px solid #f0f0f0;
}

.schedule-row:last-child {
    border-bottom: none;
}

.time-cell {
    padding: 20px 15px;
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.class-cell {
    padding: 20px 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    min-height: 80px;
}

.class-cell:hover {
    background: var(--background-light);
}

.class-cell small {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 4px;
}

.class-cell.vinyasa { background: rgba(139, 69, 19, 0.1); color: var(--primary-color); }
.class-cell.power { background: rgba(205, 133, 63, 0.1); color: var(--accent-color); }
.class-cell.gentle { background: rgba(222, 184, 135, 0.1); color: #B8860B; }
.class-cell.yin { background: rgba(160, 82, 45, 0.1); color: #A0522D; }
.class-cell.meditation { background: rgba(210, 180, 140, 0.1); color: #D2691E; }
.class-cell.prenatal { background: rgba(244, 164, 96, 0.1); color: #F4A460; }
.class-cell.empty { color: var(--text-light); cursor: default; }

/* Packages Section */
.packages {
    padding: 120px 0;
    background: var(--background-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 45px 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.15);
}

.package-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.package-price {
    margin-bottom: 35px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 5px;
}

.period {
    color: var(--text-light);
    font-size: 1rem;
}

.package-features ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.package-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-size: 1rem;
}

.package-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

.special-offers {
    text-align: center;
}

.special-offers h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 300;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.offer-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.offer-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.offer-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.offer-btn:hover {
    background: #B8860B;
    transform: translateY(-2px);
}

/* Community Section */
.community {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--background-light);
    padding: 40px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.1);
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 20px;
}

.rating {
    margin-top: 15px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.author-details h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-details span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.author-details small {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 2px;
    display: block;
}

/* Workshops Section */
.workshops {
    padding: 120px 0;
    background: var(--background-light);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.workshop-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.15);
}

.workshop-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.05);
}

.workshop-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    min-width: 70px;
}

.workshop-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workshop-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2px;
}

.workshop-content {
    padding: 35px 30px;
}

.workshop-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.workshop-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.workshop-details {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.workshop-details span {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.workshop-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.workshop-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

/* Connect Section */
.connect {
    padding: 120px 0;
    background: var(--white);
}

.connect-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.connect-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.studio-info h3,
.studio-hours h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.info-text {
    color: var(--text-light);
    line-height: 1.6;
}

.info-text strong {
    color: var(--text-dark);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--background-light);
    border-radius: 12px;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
    font-weight: 500;
}

.connect-form {
    background: var(--background-light);
    padding: 45px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.connect-form h3 {
    color: var(--primary-color);
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-submit:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo-symbol {
    font-size: 2rem;
    color: var(--secondary-color);
}

.footer-logo h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.footer-logo span {
    color: var(--primary-color);
    font-style: italic;
    font-size: 0.9rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-section li {
    padding: 10px 0;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-hours {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #34495e;
}

.footer-hours h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
}

.footer-bottom-content {
    text-align: center;
    color: #95a5a6;
}

.footer-bottom-content p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .journey-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .journey-values {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .connect-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .schedule-header,
    .schedule-row {
        grid-template-columns: 100px repeat(7, 1fr);
        font-size: 0.8rem;
    }
    
    .time-cell,
    .class-cell {
        padding: 15px 8px;
        min-height: 70px;
    }
    
    .cookie-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

