body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #0a0a0a;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    cursor: none !important;
}
.about-header {
    background: linear-gradient(135deg, #0a0a0a 80%, #00d4ff 100%);
    padding: 0 0 32px 0;
    box-shadow: 0 2px 16px 0 rgba(0,212,255,0.04);
}
.about-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 0 24px;
}
.about-logo img {
    height: 48px;
}
.about-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-menu li a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.about-menu li a.active,
.about-menu li a:hover {
    background: #00d4ff;
    color: #0a0a0a;
}
.about-header-content {
    text-align: center;
    margin-top: 32px;
}
.about-header-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #00d4ff;
}
.about-tagline {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 0;
}
.about-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 16px 32px 16px;
}
.about-section {
    margin-bottom: 48px;
    background: rgba(255,255,255,0.02);
    border-radius: 14px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px 0 rgba(0,212,255,0.04);
}
.about-section h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.about-section ul {
    padding-left: 20px;
    margin: 0 0 12px 0;
}
.about-section ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.team-member {
    background: rgba(0,212,255,0.04);
    border-radius: 12px;
    padding: 24px 18px 18px 18px;
    text-align: center;
    flex: 1 1 220px;
    max-width: 260px;
    min-width: 180px;
    box-shadow: 0 2px 8px 0 rgba(0,212,255,0.06);
    margin-bottom: 16px;
}
.team-photo {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00d4ff;
    margin-bottom: 14px;
    background: #222;
}
.team-member h3 {
    font-size: 1.1rem;
    color: #00d4ff;
    margin: 10px 0 8px 0;
    font-weight: 600;
}
.team-member p {
    font-size: 0.98rem;
    color: #f5f5f5;
    opacity: 0.85;
    margin-bottom: 10px;
}
.team-socials a {
    color: #00d4ff;
    font-size: 0.98rem;
    text-decoration: none;
    margin: 0 4px;
    transition: color 0.2s;
}
.team-socials a:hover {
    color: #fff;
}
.about-actions {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.about-btn {
    background: #00d4ff;
    color: #0a0a0a;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1.08rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px 0 rgba(0,212,255,0.08);
}
.about-btn:hover {
    background: #fff;
    color: #00d4ff;
}
.about-btn-secondary {
    background: #222;
    color: #00d4ff;
    border: 1.5px solid #00d4ff;
}
.about-btn-secondary:hover {
    background: #00d4ff;
    color: #0a0a0a;
}
.about-footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 32px 0 18px 0;
    margin-top: 32px;
}
.about-footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.about-footer-socials {
    display: flex;
    gap: 18px;
    margin-bottom: 6px;
}
.about-footer-socials a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s;
}
.about-footer-socials a:hover {
    color: #fff;
}
.about-footer-copy {
    color: #888;
    font-size: 0.98rem;
    text-align: center;
}
.about-footer-copy a {
    color: #00d4ff;
    text-decoration: underline;
    margin-left: 8px;
    font-size: 1.01rem;
}
.about-footer-copy a:hover {
    color: #fff;
}
@media (max-width: 700px) {
    .about-header-content h1 {
        font-size: 2rem;
    }
    .about-main {
        padding: 24px 4vw 16px 4vw;
    }
    .about-section {
        padding: 18px 8px;
    }
    .team-grid {
        flex-direction: column;
        gap: 18px;
    }
    .about-nav {
        flex-direction: column;
        gap: 18px;
        padding: 18px 8px 0 8px;
    }
    .about-menu {
        gap: 16px;
    }
}
a, a:visited, a:active {
    cursor: none !important;
} 