/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f0f0f0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* Button Styles */
.btn-primary {
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    background-color: #ff5722;
    color: #fff;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e64a19;
}

/* Section Styles */
.about-section, .vision-section, .achievements-section, .media-section, .cta-section {
    padding: 60px 20px;
    text-align: center;
}

.achievement-card {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
}

.vision-section ul, .media-section ul {
    list-style-type: disc;
    margin: 20px auto;
    padding: 0;
    max-width: 800px;
    text-align: left;
}

.vision-section ul li, .media-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Footer Styles */
.footer-section {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
