/* body{
    margin: 0;
    background: linear-gradient(rgba(0,0,0,0.5), 
    rgba(0, 0, 0, 0.5)),
    url(PC-disabled-720x360-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
header{
    width: 98%;
    height: 10%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    position: fixed;
    left: 1%;
    top: 1%;
}
.img{
    
    width: 5%;
    height: 60%;
    margin-top: 1.3%;
    margin-left: 5%;
}
h4{
    margin-top: -2.5%;
    margin-left: 10.5%;
    color: white;
    font-size: 15px;
}
h5{
    color: white;
}
a{
    cursor: pointer;
    text-decoration: none;
}
.link1{
    margin-top: -2.5%;
    margin-left: 40%;
}
.link2{
    margin-top: -3%;
    margin-left: 48%;
}
.link3{
    margin-top: -3%;
    margin-left: 55%;
}
.link4{
    margin-top: -3%;
    margin-left: 63%;
}
.img1{
    width: 3%;
    height: 35%;
    
    margin-top: -4%;
    margin-left: 73%;
}
.img2{
    width: 3%;
    height: 35%;
 
    margin-top: -2.7%;
    margin-left: 76.5%;
}
.img3{
    width: 3%;
    height: 35%;
   
    margin-top: -2.3%;
    margin-left: 80.3%;
}
.img4{
    width: 3%;
    height: 35%;
   
    margin-top: -2.5%;
    margin-left: 83.5%;
}
img{
    width: 100%;
    height: 100%;
}
h1{
    color: gold;
    margin-top: 10%;
    font-weight: 100;
}
h2{
    color: white;
    font-weight: 100;
}
h3{
    color: white;
    font-weight: 100;
}  */
  /* General Setup */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0, 0, 0, 0.7)), url(PC-disabled-720x360-1.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: white;
}

/* Header (Matching Homepage) */
header {
    width: 95%;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 50px;
    position: fixed;
    left: 2.5%;
    top: 20px;
    z-index: 1000;
    padding: 10px 20px;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img { width: 35px; height: 35px; }

h4 { font-size: 14px; margin: 0; color: white; letter-spacing: 0.5px; }

.nav-links { display: flex; align-items: center; gap: 20px; }

.nav-links h5 { margin: 0; color: white; font-size: 12px; transition: 0.3s; }

.nav-links h5:hover { color: gold; }

.social-icons { display: flex; gap: 10px; margin-left: 15px; }

.social-icons img { width: 22px; height: 22px; }

.menu-toggle { display: none; cursor: pointer; color: white; font-size: 20px; }

/* Content Layout */
.content-wrapper {
    padding: 120px 10% 50px 10%; /* Top padding ensures text starts below fixed header */
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.info-block {
    margin-bottom: 60px;
}

h1 {
    color: gold;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    padding-bottom: 5px;
}

h2 {
    font-size: 22px;
    color: #eee;
    margin-top: 15px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}

.feature {
    margin-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        border-radius: 20px;
    }

    .nav-links.active { display: flex; }

    .social-icons { margin: 15px 0 0 0; justify-content: center; }

    .content-wrapper { padding-top: 100px; }

    h1 { font-size: 26px; }
    p { font-size: 16px; }
}