body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #fff4d6, #fbe9c6);
}

.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;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 64px;
    color: #b71c1c;
    margin: 0;
    font-family: 'Times New Roman', serif;
}

.hero h2 {
    color: #d84315;
    font-style: italic;
    margin: 10px 0;
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 15px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    padding: 15px 35px;
    background: linear-gradient(to right, #d32f2f, #b71c1c);
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    padding: 15px 35px;
    border: 2px solid #c62828;
    color: #c62828;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #c62828;
    color: white;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 70px 20px;
    flex-wrap: wrap;
}

.stat-box {
    background: #f2f2f2;
    width: 250px;
    height: 200px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.stat-icon {
    font-size: 70px;
    margin-bottom: 0px;
}


.stat-text {
    margin-top: 8px;
    font-size: 17px;
    color: #444;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.footer {
    background: #c62828;
    color: white;
    text-align: center;
    padding: 20px;
}