*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#f8f5f5;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:#ffffff;
    box-shadow:0 3px 15px rgba(0,0,0,.05);
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#7c2038;
}

.nav a{
    margin-left:25px;
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.profile-section{
    padding:60px 8%;
}

.profile-container{
    max-width:1100px;
    margin:auto;
}

.welcome{
    display:flex;
    align-items:center;
    gap:25px;

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:0 8px 25px rgba(0,0,0,.07);
}

.avatar{
    width:90px;
    height:90px;

    border-radius:50%;

    background:#7c2038;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:36px;
    font-weight:bold;
}

.welcome h1{
    color:#7c2038;
    margin-bottom:10px;
}

.cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;

    margin-top:30px;
}

.card{
    background:white;

    padding:30px;

    border-radius:25px;

    box-shadow:0 8px 25px rgba(0,0,0,.07);
}

.card h2{
    color:#7c2038;
    margin-bottom:20px;
}

.card p{
    margin-bottom:10px;
    color:#444;
}

.buttons{
    display:flex;
    gap:20px;

    margin-top:30px;
}

.btn{
    background:#7c2038;

    color:white;

    text-decoration:none;

    padding:15px 30px;

    border:none;

    border-radius:15px;

    cursor:pointer;

    transition:.3s;
}

.btn:hover{
    background:#5e172b;
}

.logout{
    background:#333;
}

.logout:hover{
    background:#111;
}

@media(max-width:768px){

.cards{
    grid-template-columns:1fr;
}

.welcome{
    flex-direction:column;
    text-align:center;
}

.buttons{
    flex-direction:column;
}

}