body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    background: url('space-background.jpg') no-repeat center center fixed;
    background-size: cover;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    z-index: 1000;
}

header .logo {
    display: flex;
    align-items: center;
}

header img {
    height: 50px;
    margin-right: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

nav a:hover {
    color: #00d4ff;
}

.side-tab {
    position: fixed;
    top: 120px;
    right: 0;
    display: flex;
    flex-direction: column;
}

.side-tab a {
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 15px;
    margin: 5px 0;
    text-decoration: none;
    border-radius: 10px 0 0 10px;
    transition: 0.3s;
}

.side-tab a:hover {
    background: #00d4ff;
}

.hero {
    padding-top: 150px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0,212,255,0.8);
}

.content {
    padding: 60px 10%;
}

.card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,212,255,0.5);
}

form {
	display:flex;
	flex-direction:column;
	width:60%;margin:auto
}

input,textarea {
	margin-bottom:15px;
	padding:10px;border:none;
	border-radius:8px
}

button {
	padding:12px;
	background:#00d9ff;
	border:none;
	border-radius:8px;
	font-weight:bold;
	cursor:pointer
}
	
button:hover{opacity:0.8}
.privacy{margin-top:40px;font-size:14px;line-height:1.8}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.8);
    margin-top: 50px;
}
