body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    background-image: url('pexel.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner-image {
    display: block;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

header {
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 120px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover {
    color: #ff3b3f;
    text-shadow: 0 0 10px rgba(255, 59, 63, 0.7);
}

main {
    padding: 20px;
}

section {
    padding: 60px 20px;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.85);
    margin-bottom: 20px;
    border-radius: 12px;
}

#about {
    background-color: rgba(26, 26, 26, 0.85);
}

#about h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.cta-button {
    background-color: #ff3b3f;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 59, 63, 0.4);
}

.cta-button:hover {
    background-color: #ff5c5f;
    box-shadow: 0 6px 20px rgba(255, 92, 95, 0.6);
    transform: translateY(-2px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.stat-item h3 {
    font-size: 3.5em;
    margin: 0;
    color: #ff3b3f;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.news-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 15px 15px rgba(0,0,0,0.26);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.news-item p {
    text-align: left;
}

.news-link {
    display: inline-block;
    margin-top: 20px;
    color: #ff3b3f;
    text-decoration: none;
    font-weight: bold;
}

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

.instructor-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 15px 15px rgba(0,0,0,0.26);
}

.instructor-item img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #ff3b3f;
}

blockquote {
    font-style: italic;
    margin: 40px auto;
    max-w: 600px;
    font-size: 1.2em;
    border-left: 5px solid #ff3b3f;
    padding-left: 20px;
}

table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 20px;
    border: 1px solid #333;
}

thead {
    background-color: #ff3b3f;
}

footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #333;
}
