/* ====== BASIS ====== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0a0f1a;
    color: #e6e6e6;
}

/* ====== HEADER & NAV ====== */
header {
    background: #0d1324;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #1f2a44;
}

header h1 {
    color: #00eaff;
    margin: 0;
}

nav a {
    color: #e6e6e6;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #00eaff;
}

/* ====== HERO ====== */
.hero {
    padding: 80px 40px;
    text-align: center;
}

.hero h2 {
    color: #00eaff;
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #c7d4e3;
}

/* ====== SECTIES ====== */
.section {
    padding: 60px 40px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    color: #00eaff;
    font-size: 36px;
    margin-bottom: 20px;
}

/* ====== SERVICE BOXES ====== */
.service-box {
    background: #111829;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #1f2a44;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-box:hover {
    border-color: #00eaff;
}

.service-box i {
    font-size: 32px;
    color: #00eaff;
    margin-bottom: 10px;
}

/* ====== PARTNERS ====== */
.partners a {
    color: #00eaff;
    text-decoration: none;
    font-size: 18px;
}

.partners a:hover {
    text-decoration: underline;
}

/* ====== FOOTER ====== */
footer {
    background: #0d1324;
    padding: 20px;
    text-align: center;
    color: #7a8ba8;
    margin-top: 40px;
    border-top: 1px solid #1f2a44;
}