body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background-color: #2f455c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    position: relative;
    z-index: 100;
}

.logo-link {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 53px;
    width: auto;
}

.logo {
    position: absolute;
    left: 40px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    border-bottom: 2px solid #3cc47f;
}

.btn-investors {
    background-color: #3cc47f;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    text-transform: none;
    position: absolute;
    right: 40px;
}

.btn-investors:hover {
    background-color: #3cc47f;
    border-bottom: none;
    color: white;
}

.hero {
    background-color: #f8f9fa;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 16px;
    margin: 0;
    text-transform: uppercase;
    color: #333;
}

.hero-content .underline {
    display: none;
}

.content {
    background-image: url('Background.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    min-height: 400px;
}

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

/* Team Member Styles */
.team-member {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
    padding: 0 40px;
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    border: 3px solid #e0e0e0;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.member-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.member-bio {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #444;
    margin: 0;
    text-align: left;
}

footer {
    background-color: #253545;
    color: white;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    margin: 0 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    background-color: #3cc47f;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    text-decoration: none;
    margin: 0 10px 0 0;
}

.social-icons a:last-child {
    margin-right: 0;
}

.social-icons a i {
    color: #fff;
    fill: #fff;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .logo {
        position: relative;
        left: 0;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .member-bio {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-icons {
        position: relative;
        right: 0;
    }
}
