:root {
    --primary-blue: #2c5aa0;
    --secondary-blue: #3a7bd5;
    --light-blue: #e8f0fe;
    --dark-grey: #4a5568;
    --medium-grey: #718096;
    --light-grey: #f7fafc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-grey);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-blue) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
    padding: 100px 0;
}

.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-blue);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.team-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    background-color: var(--light-blue);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 2rem;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--secondary-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-blue);
}

.advisor-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
}

.advisor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--light-blue);
}

.linkedin-btn {
    background-color: #0077b5;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.linkedin-btn:hover {
    background-color: #005983;
    color: white;
}

.cta-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 80px 0;
}

footer {
    background-color: var(--dark-grey);
    color: white;
    padding: 50px 0 20px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.logo {
    height: 40px;
}

.stats-section {
    background-color: var(--light-grey);
    padding: 60px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--medium-grey);
}
