 /* Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #8a2be2;
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 0;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.hero-content {
    position: absolute;
    z-index: 2;
    padding: 50px;
    max-width: 50%;
}

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

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

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

/* Value Proposition Section */
.value-prop {
    display: flex;
    align-items: center;
    padding: 50px 0;
    background-color: #111;
}

.value-prop-content {
    width: 50%;
    padding: 0 50px;
    text-align: right;
}

.value-prop-image {
    width: 50%;
}

.value-prop-image img {
    width: 100%;
    height: auto;
}

.value-prop h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.value-prop p {
    font-size: 14px;
}

/* Philosophy Section */
.philosophy {
    display: flex;
    padding: 50px 0;
    background-color: #000;
}

.philosophy-content {
    width: 50%;
    padding: 0 50px;
}

.philosophy-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-image img {
    width: 100%;
    height: auto;
}

.philosophy h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.philosophy p {
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #8a2be2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* Courses Section */
.courses {
    padding: 50px 0;
    background-color: #8a2be2;
    text-align: center;
}

.courses h2 {
    font-size: 24px;
    margin-bottom: 40px;
}

.course-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.course-card {
    width: 30%;
    background-color: #000;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-info {
    padding: 20px;
    text-align: left;
}

.course-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.course-info p {
    font-size: 14px;
    margin-bottom: 20px;
}

.course-info ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.course-info ul li {
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.course-info ul li:before {
    content: "•";
    color: #8a2be2;
    position: absolute;
    left: 0;
}

.course-price {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* Registration Section */
.registration {
    padding: 50px 0;
    background-color: #000;
    text-align: center;
}

.registration h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.registration p {
    font-size: 16px;
    margin-bottom: 30px;
}

.registration-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #333;
    border: none;
    color: white;
    border-radius: 5px;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background-color: #8a2be2;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

/* Footer */
.footer {
    padding: 20px 0;
    background-color: #8a2be2;
    text-align: center;
    font-size: 12px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        max-width: 70%;
        padding: 30px;
    }

    .course-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        position: relative;
        padding: 30px 20px;
    }

    .hero-image {
        opacity: 0.3;
    }

    .value-prop, .philosophy {
        flex-direction: column;
    }

    .value-prop-content, .value-prop-image, .philosophy-content, .philosophy-image {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .course-card {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p, .value-prop p, .philosophy p {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        margin-top: 10px;
    }
}