*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}
body{
    background:radial-gradient(circle at top,#0f1b3d 0%,#050816 60%);
    color:#ffffff;
}
header{
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(90deg,#0b1437,#0a0f2c);
    position: relative;
    z-index: 1000;
}
.logo{
    font-size:22px;
    font-weight:700;
    color:#8bb3ff;
    text-decoration: none;
}
.logo span{color:#a855f7;}
nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}
nav ul li a{
    color:#e5e7eb;
    text-decoration:none;
    font-size:15px;
}
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}
.page{
    max-width:900px;
    margin:80px auto;
    padding:50px;
    background:#0b1437;
    border-radius:20px;
}
.page h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
    background:linear-gradient(90deg,#7aa2ff,#e879f9);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.page h2{
    margin-top:30px;
    font-size:22px;
    color:#8bb3ff;
}
.page p{
    margin-top:12px;
    color:#cbd5f5;
    line-height:1.7;
    font-size:15px;
}
/* FOOTER (Same as Contact Page) */
footer{
    background:#070b1f;
    padding:50px 60px;
    margin-top:40px;
}

.footer-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.footer-about h3{
    font-size:22px;
    margin-bottom:12px;
    color:#8bb3ff;
}

.footer-about p{
    color:#cbd5f5;
    line-height:1.6;
    max-width:420px;
}

.footer-links h3{
    font-size:20px;
    margin-bottom:12px;
    color:#8bb3ff;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:10px;
}

.footer-links ul li a{
    text-decoration:none;
    color:#cbd5f5;
    font-size:15px;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    font-size:14px;
    color:#8ea2d9;
}


/* MOBILE STYLES */
@media(max-width:768px){
    header{
        padding:15px 20px;
        flex-wrap:wrap;
    }
    .menu-toggle{
        display:block;
    }
    nav{
        display:none;
        width:100%;
        margin-top:10px;
        transition: max-height 0.3s ease;
    }
    nav.show{
        display:block;
    }
    nav ul{
        flex-direction:column;
        background:#0a0f2c;
        padding:15px;
        border-radius:12px;
        gap:0px;
    }
    nav ul li a{
        font-size:16px;
        padding:10px 0;
        display:block;
    }
    .page{
        margin:40px 15px;
        padding:25px;
        border-radius:15px;
    }
    .page h1{
        font-size:32px;
    }
    .page h2{
        font-size:20px;
    }
    .page p{
        font-size:14px;
    }
}
/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about p {
        margin: 0 auto;
    }
}