*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:sans-serif;
}

body{

    background:#f4f6f9;

    direction:rtl;
}

/* ===========================
   PAGE
=========================== */

.downloads-container{

    width:90%;
    max-width:1200px;

    margin:40px auto;
}

/* ===========================
   HEADER
=========================== */

.page-header{

    text-align:center;

    margin-bottom:30px;
}

.page-header h1{

    color:#053734;

    font-size:38px;

    margin-bottom:10px;
}

.page-header p{

    color:#666;

    font-size:18px;
}

/* ===========================
   BACK BUTTON
=========================== */

.top-actions{

    margin-bottom:30px;
}

.back-btn{

    display:inline-block;

    text-decoration:none;

    background:#053734;

    color:white;

    padding:12px 24px;

    border-radius:10px;

    font-weight:bold;

    transition:.3s;
}

.back-btn:hover{

    background:#D4AF37;
}

/* ===========================
   FILE GRID
=========================== */

.files-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:25px;
}

/* ===========================
   FILE CARD
=========================== */

.file-card{

    background:white;

    border-radius:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    padding:25px;

    transition:.3s;
}

.file-card:hover{

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ===========================
   ICON
=========================== */

.file-icon{

    font-size:55px;

    text-align:center;

    margin-bottom:15px;
}

/* ===========================
   TITLE
=========================== */

.file-card h2{

    color:#053734;

    text-align:center;

    margin-bottom:12px;

    font-size:24px;
}

/* ===========================
   CATEGORY
=========================== */

.category{

    display:block;

    width:fit-content;

    margin:0 auto 20px;

    background:#053734;

    color:white;

    padding:6px 16px;

    border-radius:20px;

    font-size:14px;
}

/* ===========================
   DESCRIPTION
=========================== */

.description{

    color:#555;

    line-height:1.8;

    text-align:center;

    margin-bottom:20px;
}

/* ===========================
   DATE
=========================== */

.date{

    color:#888;

    text-align:center;

    margin-bottom:25px;

    font-size:14px;
}

/* ===========================
   DOWNLOAD BUTTON
=========================== */

.download-btn{

    display:block;

    width:100%;

    text-align:center;

    text-decoration:none;

    background:#D4AF37;

    color:white;

    padding:14px;

    border-radius:10px;

    font-weight:bold;

    transition:.3s;
}

.download-btn:hover{

    background:#b89220;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .downloads-container{

        width:95%;
    }

    .page-header h1{

        font-size:30px;
    }

    .page-header p{

        font-size:16px;
    }

    .file-card{

        padding:20px;
    }

    .file-card h2{

        font-size:21px;
    }

}