:root {
    --svci-blue: #0055A4;
    --svci-red: #EF4135;
    --svci-white: #FFFFFF;
    --svci-black: #000000;
    --svci-light-bg: #F8F9FA;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--svci-black);
    background-color: var(--svci-white);
}

.navbar {
    background-color: var(--svci-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--svci-black) !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--svci-blue) !important;
}

.nav-link.active {
    color: var(--svci-red) !important;
    font-weight: 600;
}

.btn-svci {
    background-color: var(--svci-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 1.1rem;
}

.btn-svci:hover {
    background-color: var(--svci-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/team-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-align: center;
    color: var(--svci-blue);
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--svci-red);
}

.team-card {
    background: var(--svci-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-name {
    color: var(--svci-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.team-position {
    color: var(--svci-red);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-details {
    margin-bottom: 15px;
    text-align: left;
}

.team-detail-item {
    margin-bottom: 8px;
    display: flex;
}

.detail-icon {
    color: var(--svci-red);
    margin-right: 10px;
    min-width: 20px;
    text-align: center;
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--svci-light-bg);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--svci-blue);
    margin: 0 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.team-social a:hover {
    background-color: var(--svci-blue);
    color: white;
}

.executive-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.executive-table th {
    background-color: var(--svci-blue);
    color: white;
    padding: 15px;
    text-align: left;
}

.executive-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.executive-table tr:nth-child(even) {
    background-color: var(--svci-light-bg);
}

.executive-table tr:hover {
    background-color: #e6f0ff;
}

.org-structure {
    padding: 80px 0;
    background-color: var(--svci-light-bg);
}

.structure-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.volunteer-section {
    padding: 80px 0;
}

.volunteer-card {
    background: var(--svci-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    text-align: center;
}

.volunteer-icon {
    font-size: 3rem;
    color: var(--svci-red);
    margin-bottom: 20px;
}

.value-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--svci-blue) 0%, #003a75 100%);
    color: white;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.quote-section {
    padding: 60px 0;
    background-color: var(--svci-light-bg);
    text-align: center;
    font-style: italic;
    border-left: 4px solid var(--svci-red);
}

.quote-text {
    font-size: 1.2rem;
    color: var(--svci-blue);
    margin-bottom: 10px;
}

.quote-author {
    color: var(--svci-black);
    font-weight: 500;
}

.footer {
    background-color: var(--svci-black);
    color: white;
    padding: 50px 0 20px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: var(--svci-white);
    font-size: 1.2rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--svci-red);
}

.footer-links a {
    color: #DDD;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--svci-red);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--svci-red);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #AAA;
}

@media (max-width: 768px) {
    .executive-table {
        display: block;
        overflow-x: auto;
    }

    .team-detail-item {
        flex-direction: column;
        margin-bottom: 12px;
    }

    .detail-icon {
        margin-bottom: 5px;
    }
}

