* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #000;
    color: #ffeb3b;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background: #000;
    color: #ffeb3b;
    padding: 16px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffeb3b;
}

nav a {
    color: #ffeb3b;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd600;
}


/* HERO SECTION */

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, 0.83)), url('unnamed (5).webp') center/cover no-repeat;
    color: #ffd600;
    padding: 75px 0 56px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.6rem;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-hero h1 span {
    color: #ffeb3b;
    font-weight: 900;
}

.about-hero p {
    font-size: 1.2rem;
    color: #ffeb3b;
}


/* ABOUT MAIN */

.about-main {
    background: #181818;
    padding: 55px 0 45px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 45px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-story {
    flex: 1 1 340px;
}

.about-story h2 {
    color: #ffd600;
    margin-bottom: 10px;
    font-size: 1.45rem;
}

.about-story p {
    color: #ffeb3b;
    font-size: 1.04rem;
    margin-bottom: 17px;
    letter-spacing: 0.1px;
}

.about-img {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img img {
    width: 100%;
    max-width: 310px;
    border-radius: 30px;
    box-shadow: 0 4px 30px #ffd60022, 0 1.5px 5px #000;
}


/* FEATURES */

.about-features {
    background: #101010;
    padding: 55px 0 45px 0;
    text-align: center;
}

.about-features h2 {
    color: #ffd600;
    font-size: 2rem;
    margin-bottom: 28px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-top: 12px;
}

.feature-item {
    background: #181818;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(255, 235, 59, 0.09);
    padding: 26px 18px 22px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.feature-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}

.feature-item h3 {
    font-size: 1.10rem;
    margin-bottom: 9px;
    color: #ffd600;
}

.feature-item p {
    font-size: .96rem;
    color: #ffeb3b;
    line-height: 1.3;
}


/* TEAM SECTION */

.about-team {
    background: #181818;
    padding: 55px 0 50px 0;
    text-align: center;
}

.about-team h2 {
    color: #ffd600;
    margin-bottom: 30px;
    font-size: 2rem;
}

.team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 26px;
    justify-content: center;
    align-items: start;
    margin-top: 10px;
}

.team-member {
    background: #101010;
    border-radius: 15px;
    padding: 20px 10px 16px 10px;
    box-shadow: 0 2px 10px rgba(255, 235, 59, 0.07);
    text-align: center;
    transition: transform 0.16s;
}

.team-member:hover {
    transform: translateY(-7px) scale(1.035);
    box-shadow: 0 8px 16px rgba(255, 235, 59, 0.19);
}

.team-member img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd600;
    margin-bottom: 12px;
}

.team-member h4 {
    color: #ffd600;
    font-size: 1.02rem;
    margin-bottom: 5px;
}

.team-member p {
    color: #ffeb3b;
    font-size: .91rem;
}


/* FOOTER */

footer {
    background: #000;
    color: #ffeb3b;
    text-align: center;
    padding: 16px 0;
    font-size: .9rem;
    margin-top: 35px;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .about-flex {
        flex-direction: column-reverse;
        gap: 22px;
        text-align: center;
    }
    .about-img img {
        max-width: 220px;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
        width: 100%;
    }
    nav a {
        display: inline-block;
        margin: 10px 10px 0 0;
    }
    .about-hero h1 {
        font-size: 1.5rem;
    }
    .about-hero {
        padding: 45px 0 23px 0;
    }
    .about-main,
    .about-features,
    .about-team {
        padding: 30px 0 20px 0;
    }
}