body {
    margin: 0;
    font-family: Tahoma, sans-serif;
    background: linear-gradient(135deg, #0b0b10, #1a1a26);
    color: #e4e4e4;
    direction: rtl;
}

/* Header */
.header {
    text-align: center;
    padding: 70px 20px;
    background: radial-gradient(circle, #1f1f30, #0b0b10);
}

.logo {
    width: 180px;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow:
        0 0 25px rgba(0, 180, 255, 0.35),
        0 0 60px rgba(0, 180, 255, 0.15);
}

.header h1 {
    font-size: 50px;
    letter-spacing: 3px;
}

.subtitle {
    color: #00b4ff;
    margin-top: 10px;
    font-size: 16px;
}

/* Sections */
.section {
    padding: 55px 14%;
}

.section h2 {
    color: #00b4ff;
    margin-bottom: 20px;
}

.section p {
    line-height: 2;
    font-size: 15.5px;
}

.intro {
    background: rgba(255,255,255,0.03);
    border-right: 4px solid #00b4ff;
}

.highlight {
    border: 2px solid #00b4ff;
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(0,180,255,0.25);
}

.equipment ul {
    margin-top: 20px;
    line-height: 2;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 20px;
    background: #09090f;
    border-top: 1px solid #222;
}