 /* Reset und Basisstile */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f0f1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
header {
    background-color: #0a0a14;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    background: linear-gradient(to right, #9c4dff, #ff6b9b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b36bff;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to right, #9c4dff, #ff6b9b);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(156, 77, 255, 0.3);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
}



/* About Section */
.about {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    max-width: 45%;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 32px;
    color: #5dcbff;
    margin-bottom: 25px;
}

.about p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Philosophy Section */
.philosophy {
    padding: 40px 0 80px;
}

.philosophy-title {
    color: #ffbb3a;
    margin-bottom: 25px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
}

.courses-title {
    text-align: center;
    margin-bottom: 50px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.course-card {
    background-color: #161629;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.course-image {
    height: 180px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.course-description {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.course-price {
    font-size: 22px;
    font-weight: bold;
    color: #5dcbff;
}

.course-duration {
    font-size: 14px;
    opacity: 0.7;
}

.course-button {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #2c2c45;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.course-button:hover {
    background-color: #3e3e65;
}

.course-button.primary {
    background: linear-gradient(to right, #9c4dff, #ff6b9b);
}

.course-button.green {
    background: linear-gradient(to right, #4dffb8, #32a37e);
}

.course-button.blue {
    background: linear-gradient(to right, #4d9fff, #3273a3);
}

.course-button.orange {
    background: linear-gradient(to right, #ffbb3a, #ff8c3a);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #161629;
    border-radius: 10px;
    padding: 25px;
    position: relative;
}

.testimonial-stars {
    color: #ffbb3a;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-author {
    color: #b36bff;
    font-weight: 600;
}

.testimonial-location {
    font-size: 14px;
    opacity: 0.7;
}

.testimonial-decoration {
    position: absolute;
    right: -50px;
    bottom: -30px;
    width: 200px;
    z-index: -1;
    opacity: 0.6;
}

/* Blog Section */
.blog {
    padding: 80px 0;
}

.blog-title {
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #161629;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.blog-image {
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #5dcbff;
}

.blog-excerpt {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #0a0a14;
}

.contact-title {
    text-align: center;
    margin-bottom: 30px;
}

.contact-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.contact-address {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.7;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #161629;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #0f0f1a;
    border: 1px solid #2c2c45;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: #9c4dff;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #9c4dff, #ff6b9b);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(156, 77, 255, 0.3);
}

/* Footer */
footer {
    background-color: #0a0a14;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span {
    background: linear-gradient(to right, #9c4dff, #ff6b9b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #b36bff;
}

.footer-address {
    margin-bottom: 20px;
    opacity: 0.7;
    font-size: 14px;
}

.footer-copyright {
    opacity: 0.5;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-image {
        width: 35%;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        text-align: center;
        padding-bottom: 400px;
    }
    
    .hero-content {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .hero-image {
        position: absolute;
        top: auto;
        right: 50%;
        bottom: 50px;
        transform: translateX(50%);
        width: 70%;
    }
    
    .about {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        order: -1;
    }
    
    .courses-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    
    .section-title,
    .testimonials-title,
    .blog-title,
    .courses-title,
    .contact-title {
        font-size: 26px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}