﻿html, body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #005430, #000000);
    min-height: 100vh;
    font-family: 'Cairo', sans-serif;
    color: #fff;
}
.about-page {
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    background-color: rgba(255, 255, 255, 0.06);
    border: 2px solid #ffffff33;
    border-radius: 20px;
    padding: 40px;
    max-width: 750px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 20px #ffffff44;
}

    .about-content h1 {
        font-size: 42px;
        margin-bottom: 25px;
        color: #fff;
    }

    .about-content p {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 30px;
        color: #f1f1f1;
    }
