
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #9dd7ea;
    line-height: 1.6;
    color: #333;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #0066cc;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    background-color: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.academy-name {
    font-size: 2.5em;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

.website {
    font-size: 1.2em;
    color: #0066cc;
    text-decoration: underline;
    margin-bottom: 20px;
}

.section {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    scroll-margin-top: 100px;
}

.section-title {
    font-size: 2em;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 10px;
}

.content {
    font-size: 1.1em;
    line-height: 1.8;
}

.highlight {
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold;
}

.list-item {
    margin: 10px 0;
    padding: 10px;
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid #0066cc;
    border-radius: 5px;
}

.champion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.champion-item {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    color: #0066cc;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.champion-item:hover {
    transform: translateY(-5px);
}

.service-list {
    margin: 20px 0;
}

.service-list-item {
    background: rgba(0, 102, 204, 0.1);
    padding: 15px 20px;
    margin: 10px 0;
    border-left: 4px solid #0066cc;
    border-radius: 5px;
    width: 100%;
}

.service-list-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.service-list-item p {
    margin: 5px 0;
    color: #333;
}

.contact-info {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.email {
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
}

.email:hover {
    text-decoration: underline;
}

.philosophy {
    background: linear-gradient(135deg, #fff3e0, #ffcc02);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .container {
        padding: 10px;
    }
    
    .academy-name {
        font-size: 1.8em;
    }
    
    .section-title {
        font-size: 1.5em;
    }
    
    .section {
        padding: 20px;
    }
    
    .champion-list {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 5px;
    }

    .section {
        padding: 15px;
    }

    .academy-name {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.3em;
    }
}
