/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    color: #555;
    font-size: 1rem;
}

/* Main Content */
main {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #007bff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Vision Section */
.vision {
    text-align: center;
    padding: 2rem 0;
}

.vision h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.vision-item h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Recruitment Page */
.recruitment-header {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.recruitment-header h1 {
    font-size: 2.8rem;
}

.roles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .roles {
        grid-template-columns: 1fr 1fr;
    }
}

.role-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.role-card h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-top: 0;
}

.role-card ul {
    padding-left: 1.2rem;
    flex-grow: 1;
}

.role-card li {
    margin-bottom: 0.8rem;
}

.role-card .cta-button {
    background-color: #007bff;
    color: white;
    align-self: flex-start;
}

.role-card .cta-button:hover {
    background-color: #0056b3;
}


/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    background: #333;
    color: white;
}
