/* Reset & basic styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8fbf8 0%, #e8f5e8 100%);
    color: #2d4a2d;
    line-height: 1.7;
    min-height: 100vh;
}

/* Header Styling */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(144, 187, 144, 0.1);
    border-bottom: 1px solid rgba(144, 187, 144, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

/* Logo Container and Styling */
.logo-container {
    height: 60px;
    margin-right: 15px;
}

.header-logo {
    height: 100%;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.header-logo:hover {
    transform: scale(1.02);
}

.brand-text h1 {
    font-size: 1.8rem;
    color: #2d4a2d;
    margin: 0;
    font-weight: 600;
    font-family: Georgia, serif;
}

.tagline {
    font-size: 0.9rem;
    color: #90bb90;
    font-style: italic;
    margin: 2px 0 0 0;
    font-weight: 500;
}

.hero-card {
    position: relative;
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(144, 187, 144, 0.3);
    overflow: hidden;
}

/* Navigation */
nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #2d4a2d;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    background: rgba(144, 187, 144, 0.1);
    color: #228b22;
    transform: translateY(-1px);
}

/* Links and Typography */
a {
    text-decoration: none;
    color: #2d4a2d;
    transition: color 0.3s ease;
}

a:hover {
    color: #90bb90;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

/* Card Styling */
.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(144, 187, 144, 0.15);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(144, 187, 144, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(144, 187, 144, 0.25);
}

.card-header {
    padding: 25px 30px 15px;
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(144, 187, 144, 0.1);
}

.card-content {
    padding: 30px;
}

.card-header h2 {
    color: #2d4a2d;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.card-header p {
    color: #4a6741;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Split Content Layout */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-left h1, .content-left h2 {
    color: #2d4a2d;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-left p {
    margin-bottom: 15px;
    color: #4a6741;
    font-size: 1.1rem;
}

/* FIXED: Image styling with better banner support */
.hero-image, .about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(144, 187, 144, 0.2);
    transition: transform 0.3s ease;
}

/* Special class for wide banner images - USE THIS FOR banner.jpg */
.banner-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(144, 187, 144, 0.2);
    transition: transform 0.3s ease;
    background: rgba(144, 187, 144, 0.05);
    padding: 10px;
}

.hero-image:hover, .about-image:hover, .banner-image:hover {
    transform: scale(1.02);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.service-item {
    background: rgba(144, 187, 144, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.15);
}

.service-item h3 {
    color: #2d4a2d;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-item p {
    color: #4a6741;
    font-size: 1rem;
}

/* Typography */
h1, h2, h3 {
    color: #2d4a2d;
}

p {
    color: #4a6741;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 30px 40px;
    border-top: 1px solid rgba(144, 187, 144, 0.2);
    margin-top: 60px;
    font-size: 0.95rem;
    color: #4a6741;
    backdrop-filter: blur(10px);
}

/* Tab Styling for Classes Page */
button.tab {
    padding: 12px 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 2px solid rgba(144, 187, 144, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: #2d4a2d;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: inherit;
}

button.tab:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-1px);
}

button.tab.active {
    background: #90bb90;
    color: white;
    border-color: #90bb90;
    box-shadow: 0 4px 15px rgba(144, 187, 144, 0.3);
}

.tab-content {
    margin-top: 25px;
    padding: 30px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(144, 187, 144, 0.1);
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Video Styling */
iframe {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(144, 187, 144, 0.2);
}

/* About Page Specific Styles */
.intro-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2d4a2d;
    line-height: 1.6;
}

.future-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.plan-item {
    background: rgba(144, 187, 144, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    transition: all 0.3s ease;
}

.plan-item:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.15);
}

.plan-item h3 {
    color: #2d4a2d;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.plan-item p {
    color: #4a6741;
    font-size: 1rem;
    margin: 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(144, 187, 144, 0.3);
    text-align: center;
}

.cta-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d4a2d;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a6741;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.cta-button.primary {
    background: #90bb90;
    color: white;
    border: 2px solid #90bb90;
}

.cta-button.primary:hover {
    background: #228b22;
    border-color: #228b22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #2d4a2d;
    border: 2px solid rgba(144, 187, 144, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(144, 187, 144, 0.1);
    border-color: #90bb90;
    transform: translateY(-2px);
}

/* Classes Page Specific Styles */
.teaching-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
    padding: 20px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(144, 187, 144, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    font-weight: 500;
    color: #2d4a2d;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.2rem;
}

.class-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(144, 187, 144, 0.1);
    padding-bottom: 20px;
}

.class-details {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.class-info {
    padding: 0;
}

.class-info h3 {
    font-size: 1.8rem;
    color: #2d4a2d;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(144, 187, 144, 0.2);
}

.class-feature {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(144, 187, 144, 0.03);
    border-radius: 8px;
    border-left: 4px solid #90bb90;
}

.class-feature h4 {
    color: #2d4a2d;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.class-feature p {
    color: #4a6741;
    margin-bottom: 10px;
    line-height: 1.6;
}

.class-feature ul {
    color: #4a6741;
    padding-left: 20px;
}

.class-feature li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.location-details {
    background: rgba(144, 187, 144, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(144, 187, 144, 0.2);
}

.location-details p {
    margin-bottom: 5px;
    color: #2d4a2d;
}

.location-details p:first-child {
    font-weight: 600;
    font-size: 1.05rem;
}

.reformer-update {
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid rgba(144, 187, 144, 0.3);
    text-align: center;
    margin-top: 20px;
}

.reformer-update p {
    color: #2d4a2d;
    font-weight: 500;
    margin: 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.approach-item {
    background: rgba(144, 187, 144, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.15);
}

.approach-item h3 {
    color: #2d4a2d;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.approach-item p {
    color: #4a6741;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Video Preview Styles */
.video-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.video-preview {
    background: rgba(144, 187, 144, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.video-preview:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.15);
}

.video-preview h3 {
    color: #2d4a2d;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-preview p {
    color: #4a6741;
    margin: 0;
    line-height: 1.5;
}

.coming-soon-note {
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid rgba(144, 187, 144, 0.3);
    text-align: center;
    margin-top: 30px;
}

.coming-soon-note p {
    color: #2d4a2d;
    font-weight: 500;
    margin: 0;
}

/* Video Pages Specific Styles */
.video-header {
    text-align: center;
    margin-bottom: 30px;
}

.video-header h1 {
    font-size: 2.2rem;
    color: #2d4a2d;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #90bb90;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(144, 187, 144, 0.3);
    background: #f0f0f0;
    aspect-ratio: 16/9;
}

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

.class-description {
    max-width: 100%;
}

.intro-description {
    font-size: 1.15rem;
    color: #2d4a2d;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background: rgba(144, 187, 144, 0.05);
    border-radius: 8px;
    border-left: 4px solid #90bb90;
}

.class-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    background: rgba(144, 187, 144, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.15);
}

.feature-item h3 {
    color: #2d4a2d;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: #4a6741;
    margin: 0;
    line-height: 1.6;
}

.instructor-note {
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(144, 187, 144, 0.3);
    margin-top: 30px;
}

.instructor-note h3 {
    color: #2d4a2d;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.instructor-note p {
    color: #4a6741;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.expectation-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    transition: all 0.3s ease;
}

.expectation-item:hover {
    background: rgba(144, 187, 144, 0.05);
    transform: translateY(-1px);
}

.expectation-item h4 {
    color: #2d4a2d;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.expectation-item p {
    color: #4a6741;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.warning-note {
    background: rgba(255, 200, 150, 0.1);
    border: 2px solid rgba(255, 180, 100, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.warning-note h4 {
    color: #8b4513;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.warning-note p {
    color: #654321;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Why Choose Features */
.why-choose-features {
    margin: 20px 0 25px 0;
}

.feature-highlight {
    background: rgba(144, 187, 144, 0.05);
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid #90bb90;
    color: #4a6741;
    line-height: 1.5;
}

.feature-highlight strong {
    color: #2d4a2d;
    font-weight: 600;
}

/* Book Now Button Styling */
.book-now-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(144, 187, 144, 0.2);
    text-align: center;
}

.book-now-btn {
    background: #90bb90;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(144, 187, 144, 0.3);
}

.book-now-btn:hover {
    background: #228b22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.4);
}

.book-now-btn.disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.book-now-btn.disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: 0 4px 15px rgba(144, 187, 144, 0.3);
}

.drop-in-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #4a6741;
    font-style: italic;
}

/* Popup Styling */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 20px;
    width: 100%;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
}

.popup-close:hover {
    color: #90bb90;
}

.popup-content h2 {
    color: #2d4a2d;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.popup-class-info {
    background: rgba(144, 187, 144, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(144, 187, 144, 0.2);
}

.popup-class-info h3 {
    color: #2d4a2d;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.popup-class-info ul {
    list-style: none;
    padding: 0;
}

.popup-class-info li {
    margin-bottom: 8px;
    color: #4a6741;
    line-height: 1.5;
}

.drop-in-info {
    background: rgba(255, 200, 150, 0.1);
    border: 1px solid rgba(255, 180, 100, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    color: #654321;
    font-weight: 500;
}

.popup-contact-methods h3 {
    color: #2d4a2d;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
}

.popup-contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-contact-btn {
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.popup-contact-btn.email {
    background: rgba(144, 187, 144, 0.1);
    color: #2d4a2d;
    border: 2px solid rgba(144, 187, 144, 0.3);
}

.popup-contact-btn.email:hover {
    background: #90bb90;
    color: white;
}

.popup-contact-btn.whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.popup-contact-btn.whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Booking Card Styling */
.booking-card {
    border: 2px solid #90bb90;
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 12px 40px rgba(144, 187, 144, 0.2);
}

.booking-card .card-header {
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.15) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.booking-info {
    text-align: center;
    margin-bottom: 30px;
}

.booking-text {
    font-size: 1.1rem;
    color: #2d4a2d;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.contact-note {
    font-size: 0.9rem;
    color: #4a6741;
    margin-top: 5px;
    font-style: italic;
}

.booking-benefits {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(144, 187, 144, 0.2);
}

.booking-benefits h3 {
    color: #2d4a2d;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    color: #4a6741;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(144, 187, 144, 0.05);
    transform: translateY(-2px);
}

.benefit-item strong {
    color: #2d4a2d;
    font-weight: 600;
}

/* Contact Methods Styling */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: rgba(144, 187, 144, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(144, 187, 144, 0.2);
}

.contact-icon {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(144, 187, 144, 0.15);
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.25);
}

.contact-info h3 {
    color: #2d4a2d;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-link {
    color: #4a6741;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.contact-link:hover {
    color: #2d4a2d;
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-1px);
}

/* Quote section styling */
.quote-section {
    background: linear-gradient(135deg, rgba(144, 187, 144, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 25px;
    margin: 25px 0;
    border-radius: 12px;
    border-left: 4px solid #90bb90;
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d4a2d;
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.quote-section cite {
    font-size: 0.9rem;
    color: #90bb90;
    font-style: normal;
    font-weight: 500;
}

/* Contact Information Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-item {
    background: rgba(144, 187, 144, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(144, 187, 144, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    background: rgba(144, 187, 144, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 187, 144, 0.15);
}

.contact-item h3 {
    color: #2d4a2d;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item p {
    color: #4a6741;
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-item p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #2d4a2d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .logo-container {
        height: 50px;
    }
    
    .header-logo {
        max-width: 250px;
    }
    
    nav {
        gap: 15px;
    }
    
    main {
        padding: 0 20px;
    }
    
    .split-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .content-left h1, .content-left h2 {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-content {
        padding: 20px;
    }

    .teaching-highlights {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .highlight-item {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .class-tabs {
        flex-direction: column;
    }
    
    .tab {
        margin-bottom: 5px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-header h1 {
        font-size: 1.8rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-container {
        margin: 0 -10px;
        border-radius: 8px;
    }
    
    .class-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        padding: 20px;
    }

    .banner-image {
        height: 150px;
        padding: 5px;
    }

    .popup-content {
        margin: 10px;
        padding: 20px;
    }
    
    .popup-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        height: 45px;
    }
    
    .header-logo {
        max-width: 200px;
    }
    
    .video-header h1 {
        font-size: 1.5rem;
    }
    
    .video-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-item, .instructor-note {
        padding: 20px;
    }
    
    nav a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    button.tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .banner-image {
        height: 120px;
        padding: 5px;
    }
}