
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
   background-color:#f9fafb;
   margin:0;
   padding:0;
  box-sizing: border-box;
  min-height: 100vh;
      font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";

}
.container{
    max-width: 800px;
    margin:0 auto;
    padding:20px;
}
.header {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header h1{
    color:#eab308;
    font-size: 40px;
    margin-bottom: 10px;
}
.header p.description{
        color: #7f8c8d;
}
.content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    counter-reset: section;
}
.content h2 ,.content h3{
    font-size:24px;
    /* color:#4b5563; */
    color:#111827;
        margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eab308;
}
.section {
    margin-bottom: 35px;
}
.content p{
    font-size:16px;
   color:#4b5563; 
        margin-bottom: 15px;
        line-height:24px;
}
.section h2::before{
      counter-increment: section;
  content:  counter(section) ". ";
}
.section ul {
    margin-left: 30px;
    margin-bottom: 0px;
}
.section ul li{
    color:#4b5563; 
    margin-bottom: 8px;
    font-size:16px;
    line-height:24px;
}
.section p a{
    color: #eab308;
    text-decoration: none;
    font-weight: 600;
}
.section  a{
    color: #eab308;
    text-decoration: none;
    font-weight: 600;
}
.section .highlight {
    background: rgba(234, 179, 8 , 30%);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #eab308;
}
.delete_page ul li{
    list-style: none;
}
.delete_page ul{
    margin-left:20px;
    margin-bottom: 16px;;
}
@media (max-width: 576px) {
.header{
    padding: 20px;
    margin-bottom: 20px;
}
.header h1{
    font-size: 30px;
}
.content{
    padding: 20px;
}
.content h2, .content h3{
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.section {
    margin-bottom: 28px;
}
}