*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
}
.header{
    display: flex;
}
nav{
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 15px 5%;
    border-bottom: 1px solid #333;
}
#header h1{
    color: whitesmoke;
}
#header{
    display: flex;
    list-style-type: none;
    align-items: center;
}
li.right{
    margin-left: 30px;
}
li a{
    text-decoration: none;
    display: block;
    color: #e0e0e0;
}
#right{
    margin-left: 60%;
}
#header li a:hover, #logo:hover{
    color: #d4af37;
    cursor: pointer;
}
#logo{
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}
#about{
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 10%;
    background:linear-gradient(to bottom, #000, #111);
}
div.left{
    width: 50%;
}
#about img{
    width: 100%;
    height:100%;
    border-radius: 15px;
    border: 1px solid #d4af37;
}
.right{
    flex: 1;
}
.right h2{
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
}
#journey{
    padding: 60px 10%;
}
#journey h2{
    color: #fff;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}
.journey{
    list-style: none;
}
.journey li{
    background: #1a1a1a;
    margin-bottom: 15px;
    border-radius: 0 8px 8px 0;
    padding: 20px;
    transition: transform 0.3s;
}
.journey li:hover{
    background: #222;
}
.journey b{
    color: #d4af37;
    font-size: 1.1rem;
}
#trophies {
    padding: 60px 10%;
    background-color: #0a0a0a;
}
#trophies h2{
    text-align: center;
    margin-bottom: 40px;
}
.trophies, .awards{
    display: inline-block;
    width: 45%;
    margin: 2%;
    list-style: none;
    vertical-align: top;
}
#trophies h3{
    color: #d4af37;
    margin-bottom: 15px;
    border-bottom: 1px soliid #333;
    padding-bottom: 5px;
}
#trophies li{
    border-bottom: 1px solid #222;
    padding: 8px 0;
}
.footer{
    background: #000;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    font-size: 15px;
    padding: 40px;
}