body{
    font-family: Arial, sans-serif;
    margin:0;
    background:#ffffff;
    color:#333;
}

header{
    background:#111;
    color:white;
    text-align:center;
    padding:40px 20px;
}

header h1{
    margin:0;
    font-size:48px;
    letter-spacing:3px;
}

header p{
    font-size:18px;
    margin-top:10px;
}

.topbar{
    background:#111;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-area img{
    width:50px;
}

.company-name{
    font-size:20px;
    font-weight:bold;
    letter-spacing:2px;
}

nav a{
    color:white;
    margin-left:25px;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    color:#00b4ff;
}

nav{
    background:#222;
    padding:10px;
    text-align:center;
}

nav a{
    color:white;
    margin:0 15px;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    color:#00b4ff;
}

.container{
    max-width:1000px;
    margin:auto;
    padding:40px 20px;
}

.logo{
    width:180px;
    margin-bottom:10px;
}

h2{
    text-align:center;
    margin-bottom:20px;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:25px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

.hero{
    background:#222;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:10px;
}

.hero p{
    font-size:20px;
}
.dashboard{
    background:#0f1720;
    color:white;
    padding:60px 20px;
    text-align:center;
}

.dashboard h2{
    margin-bottom:30px;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
    gap:25px;
    max-width:900px;
    margin:auto;
}

.status-card{
    background:#1a2430;
    padding:25px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.4);
}

.status-card h3{
    margin-bottom:10px;
}

.status-good{
    color:#4CAF50;
    font-weight:bold;
}

.status-warning{
    color:#FFC107;
    font-weight:bold;
}

.about-intro{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
}

.team{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
    max-width:900px;
    margin:auto;
}

.team-card{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.team-card h3{
    margin-bottom:5px;
}

.role{
    font-weight:bold;
    color:#00b4ff;
    margin-bottom:10px;
}

.team-card img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    display:block;
    margin:0 auto 15px auto;
}