/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2e8b57;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2e8b57;
}

.btn-contact {
    background-color: #2e8b57;
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f7f4 0%, #e1f0e8 100%);
    padding: 60px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.8rem;
    color: #1a5c3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tagline {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-hero {
    display: inline-block;
    background-color: #2e8b57;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: #1a5c3a;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content Sections */
.main-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 80px;
}

.content-section h2 {
    font-size: 2rem;
    color: #1a5c3a;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.content-section h2 i {
    margin-right: 15px;
}

/* About Section */
.about-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.coach-profile {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.coach-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 4px solid #f0f7f4;
}

.coach-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-info h3 {
    font-size: 1.8rem;
    color: #1a5c3a;
}

.coach-title {
    color: #666;
    font-style: italic;
}

.about-card ul {
    margin: 15px 0 20px 20px;
}

.about-card li {
    margin-bottom: 8px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: #1a5c3a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.faq-item h4 i {
    margin-right: 10px;
    color: #2e8b57;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    background-color: #f0f7f4;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: #2e8b57;
}

.service-card h3 {
    color: #1a5c3a;
    margin-bottom: 10px;
}

.service-highlight {
    background-color: #f0f7f4;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #2e8b57;
}

.service-highlight p {
    margin-bottom: 10px;
}

/* Lessons Section */
.week-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.week-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.week-card h3 {
    color: #1a5c3a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.week-card ul {
    list-style-position: inside;
}

.week-card li {
    margin-bottom: 10px;
}

/* Fees Section */
.fees-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.fee-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fee-card h3 {
    color: #1a5c3a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.fee-card h3 i {
    margin-right: 10px;
}

.fee-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2e8b57;
    margin-bottom: 15px;
}

.fee-list {
    margin-top: 20px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-note {
    background-color: #fff8e1;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #ffc107;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3, .contact-form h3 {
    color: #1a5c3a;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 12px;
    color: #2e8b57;
    min-width: 20px;
}

.contact-features {
    margin-top: 25px;
}

.contact-features p {
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2e8b57;
}

.btn-submit {
    background-color: #2e8b57;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1a5c3a;
}

/* Footer */
.site-footer {
    background-color: #1a5c3a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .main-nav {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .faq-grid, .services-container, .week-container, .fees-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .coach-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .coach-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
