* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url("../images/motherboard.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
}
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
}
header {
    background-color: #173F3F;
    color: white;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}
header img {
    width: 80px;
}
nav {
    background-color: #2C7F88;
    display: flex;
    justify-content: space-evenly;
    padding: 15px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
nav a:hover {
    color: #A8C686;
}
main {
    background-color: rgba(255,255,255,0.92);
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
}
section {
    margin-bottom: 40px;
}
h2 {
    color: #7C2E15;
}
footer {
    background-color: #173F3F;
    color: white;
    text-align: center;
    padding: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    background-color: #2C7F88;
    color: white;
}
.hero {
    width: 100%;
    height: 850px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}
main {
    background-color: rgba(255,255,255,0.92);
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}