body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#3333FF;
}

/* Sidebar */

.sidebar{
    position:fixed;
    left:0;
    top:0;
    width:180px;
    height:100%;
    background:#3333FF;
    border-right:3px solid #F2C94C;
    padding-top:20px;
    box-sizing:border-box;
}

.sidebar h2{
    text-align:center;
    color:#FFFFFF;
    margin-bottom:30px;
    font-size:1.3rem;
}

.sidebar a{
    display:block;
    padding:15px 20px;
    color:#FFFFFF;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.sidebar a:hover{
    background:#F2C94C;
    color:#000000;
}

.sidebar a.active{
    background:#F2C94C;
    color:#000000;
}

/* Main Content */

.content{
    margin-left:200px;
    min-height:100vh;
    background:#f2f4ff;
}

header{
    background:#ffffff;
    padding:30px;
    text-align:center;
    border-bottom:5px solid #F2C94C;
}

header h1{
    color:#3333FF;
    margin:0;
}

header{
    background:#f8f9ff;
    padding:30px;
    text-align:center;
    border-bottom:5px solid #F2C94C;
}

main{
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

.card{
    background:#fdfdfd;
    padding:30px;
    border-radius:14px;
    margin-bottom:24px;
    box-shadow:0 4px 14px rgba(0,0,0,0.12);
}

.card h2{
    color:#3333FF;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.button{
    display:inline-block;
    background:#F2C94C;
    color:black;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
    font-weight:bold;
    text-align:center;
}

.button:hover{
    background:#ddb73f;
}

footer{
    text-align:center;
    color:#3333FF;
    padding:20px;
}
