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

body {
    background-color: #1c1c1c;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: #ffcc33;
    color: #1c1c1c;
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 50%;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.btn {
    display: inline-block;
    background-color: #ffcc33;
    color: #1c1c1c;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.btn:hover {
    background-color: #e0b52e;
}

/* About Section */
.about {
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.about-image {
    flex: 1;
}

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

.about-content {
    flex: 1;
    padding-left: 30px;
}

h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffcc33;
}

/* Education Section */
.education {
    background-color: #ffcc33;
    color: #1c1c1c;
    padding: 40px 0;
    border-radius: 10px;
    margin: 40px 0;
}

.education h2 {
    text-align: center;
    color: #1c1c1c;
    margin-bottom: 20px;
}

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

.edu-item {
    padding: 15px;
}

.edu-item h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.edu-item p {
    font-size: 12px;
    color: #333;
}

/* Investment Terms */
.investment-terms {
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.terms-content {
    flex: 1;
    padding-right: 30px;
}

.terms-image {
    flex: 1;
}

.terms-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq h2 {
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-image {
    float: right;
    width: 40%;
    margin-left: 20px;
}

.faq-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Contact Form */
.contact {
    padding: 60px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

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

input, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}

.submit-btn {
    display: block;
    width: 200px;
    margin: 20px auto 0;
    background-color: #fff;
    color: #1c1c1c;
    padding: 12px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #ffcc33;
    color: #1c1c1c;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 12px;
}

.footer-legal {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero, .about, .investment-terms {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .about-content, .terms-content {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .edu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image, .terms-image, .hero-image {
        margin-top: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        margin-bottom: 20px;
    }
    
    .faq-image {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    .fl {
        flex-direction: column;
    }
}

.footer-legal a{
    color: #000;
}

.fl {
    display: flex;

}

@media (max-width: 480px) {
    .edu-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
}