*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f8f8f8;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* Header */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 35px;
}

.logo img{
    width:120px;
}

.header h1{
    color:#3366cc;
    font-size:42px;
    font-weight:700;
}

.header-icons{
    display:flex;
    gap:15px;
}

.icon{
    width:55px;
    height:55px;
    cursor:pointer;
}

/* Cards */

.container{
    width:700px;
    max-width:95%;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.card{
    background:#fff;
    border:2px solid #3d7cff;
    border-radius:12px;
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
    font-size:22px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.3s;
}
.card a{
	text-decoration:none;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.arrow{
    font-size:28px;
    color:#3366cc;
    /* font-weight:bold; */
}

/* Footer */

.footer{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#777;
    color:#fff;
    text-align:center;
    padding:12px;
    font-size:14px;
}

/* Responsive */

@media(max-width:768px){

    .header{
        flex-wrap:wrap;
        gap:20px;
    }

    .header h1{
        width:100%;
        text-align:center;
        font-size:32px;
    }

    .container{
        grid-template-columns:1fr;
    }

}