* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff7ed;
    color: #333;
}


.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


.header {
    background: #c62828;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: gold;
    font-size: 22px;
    font-weight: bold;
}

.menu-icon {
    width: 30px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 4px;
    background: white;
    margin: 5px 0;
}


.side-menu {
    position: fixed;
    top: 60px;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #b71c1c;
    transition: 0.4s;
    padding-top: 20px;
}

.side-menu a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
}

.side-menu a:hover {
    background: #8e0000;
}


.section-title {
    text-align: center;
    color: #b91c1c;
    margin: 40px 0 30px;
    font-size: 28px;
}


.card {
    display: flex;
    background: white;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}


.card-left {
    width: 25%;
    color: white;
    text-align: center;
    padding: 20px;
}

.card-left .icon {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
}

 
.red { background: linear-gradient(to bottom right, #dc2626, #7f1d1d); }
.green { background: linear-gradient(to bottom right, #16a34a, #14532d); }
.yellow { background: linear-gradient(to bottom right, #facc15, #a16207); }


.card-right {
    width: 75%;
    padding: 20px;
}

.card-right h3 {
    color: #b91c1c;
    margin-bottom: 10px;
}

.card-right p {
    line-height: 1.6;
    margin-bottom: 10px;
}


.note {
    background: #fef9c3;
    padding: 10px;
    border-left: 4px solid #facc15;
    font-style: italic;
}


.footer {
    background-color: #991b1b;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}



.purple { background: linear-gradient(to bottom right, #7e22ce, #4c1d95); }
.orange { background: linear-gradient(to bottom right, #f97316, #9a3412); }
.pink { background: linear-gradient(to bottom right, #ec4899, #9d174d); }
.brown { background: linear-gradient(to bottom right, #92400e, #451a03); }

