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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFF8DC;
    color: #8B4513;
    line-height: 1.6;
}

header {
    background-color: #8B4513;
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

nav {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-btn {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-btn.active,
.nav-btn:hover {
    background-color: white;
    color: #8B4513;
}

main {
    padding: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    display: none;
    animation: fadeIn 0.3s;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero {
    background-color: #F5E6D3;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.hero h2 {
    color: #8B4513;
    font-style: italic;
    font-size: 1.2rem;
    margin: 0.2rem 0;
}

.hero-image {
    text-align: center;
    margin: 1rem 0;
}

.hero-image img {
    max-width: 70%;
    height: auto;
    border-radius: 50%;
    border: 4px solid #CD853F;
}

.about-image {
    text-align: center;
    margin-bottom: 1rem;
}

.about-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}

.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.quick-info {
    background-color: #F5E6D3;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem 0;
}

.quick-info p {
    margin: 0.5rem 0;
    color: #8B4513;
}

#about h2 {
    color: #8B4513;
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

#about p {
    margin-bottom: 1rem;
    text-align: justify;
}

.assistant-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #CD853F;
}

.accordion {
    background-color: #F5E6D3;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #CD853F;
    overflow: hidden;
}

.accordion-header {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #E8D5B7;
}

.header-image {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}

.accordion-header h3 {
    color: #8B4513;
    margin: 0;
    flex-grow: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #CD853F;
    font-weight: bold;
    transition: transform 0.3s;
}

.accordion.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.accordion.active .accordion-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 0 1rem 1rem 1rem;
}

.accordion-content h4 {
    color: #8B4513;
    margin: 1rem 0 0.5rem 0;
}

.accordion-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.3rem;
}

.course-images {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.course-image {
    width: calc(33.33% - 0.33rem);
    height: auto;
    border-radius: 5px;
}

@media (max-width: 480px) {
    .course-image {
        width: calc(50% - 0.25rem);
    }
}

.contact-info {
    background-color: #F5E6D3;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #DDD;
}

.contact-info a {
    color: #CD853F;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.service-areas {
    background-color: #CD853F;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.service-areas h3 {
    margin-bottom: 0.5rem;
}

.map-container {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 8px;
}

@media (min-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    nav {
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    

    
    .accordion.active .accordion-content {
        max-height: 500px;
    }
}