/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #003366 0%, #00509e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #003366;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Faculty Content */
.faculty-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.faculty-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faculty-intro {
    margin-bottom: 40px;
}

.faculty-intro p {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #333;
}

.section-title {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #00509e;
    padding-bottom: 10px;
}

h3 {
    color: #004080;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

h4 {
    color: #00509e;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 8px;
    color: #333;
}

.faculty-contact {
    margin-top: 40px;
    font-style: italic;
    color: #555;
}

.faculty-contact p {
    margin-bottom: 5px;
}