* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
}

/* Navigation styles (same as other pages) */
.navbar {
    background-color: #3a3a3a;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.color-bar {
    height: 6px;
    display: flex;
}

.color-bar-segment {
    flex: 1;
}

.magenta {
    background-color: #E70D88;
}

.cyan {
    background-color: #2CABE2;
}

.yellow {
    background-color: #F1EC0E;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    min-height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-link:hover {
    color: #2CABE2;
}

.nav-link.active {
    color: #F1EC0E;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F1EC0E;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Desktop dropdown arrow rotation */
@media (min-width: 769px) {
    .nav-item:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d2d2d;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
    border-top: 3px solid #2CABE2;
}

/* Desktop hover effect only */
@media (min-width: 769px) {
    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #3a3a3a;
    color: #2CABE2;
    padding-left: 2rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
    padding: 8rem 2rem 4rem;
    margin-top: 100px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 2rem;
    background-color: white;
}

.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.leader-image {
    position: relative;
    text-align: center;
}

.leader-photo {
    width: 100%;
    max-width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.leader-photo-placeholder {
    color: #999;
    font-size: 1.2rem;
}

.leader-info {
    text-align: center;
    margin-top: 2rem;
}

.leader-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1.2rem;
    color: #2CABE2;
    font-weight: 500;
}

.leader-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.leader-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E70D88, #2CABE2, #F1EC0E);
}

.leader-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.testimonial-quote {
    background-color: #f8f9fa;
    border-left: 4px solid #2CABE2;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #E70D88;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    padding-left: 40px;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-header {
    text-align: center;
    margin-bottom: 4rem;
}

.expertise-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background-color: white;
}

.values-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E70D88, #2CABE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.value-label {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(90deg, #E70D88, #2CABE2, #F1EC0E);
    background-size: 200% 100%;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Footer (same as other pages) */
.footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #3a3a3a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2CABE2;
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-info {
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-info a {
    color: #2CABE2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #F1EC0E;
}

.footer-separator {
    color: #666;
    margin: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .leadership-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leader-content h2 {
        text-align: center;
    }

    .leader-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 112px;
        flex-direction: column;
        background-color: #3a3a3a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #232323;
        margin: 0;
        border-top: none;
        display: none;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .dropdown-item {
        padding-left: 3rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .expertise-title,
    .values-title {
        font-size: 2rem;
    }

    .footer-info {
        font-size: 0.85rem;
        line-height: 2;
    }

    .footer-separator {
        display: block;
        visibility: hidden;
        height: 0;
    }
}