/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
.site-header {
    background: url('header.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 80px 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Content */
.content {
    text-align: center;
    padding: 40px 20px;
}

.content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}/* Footer Styling */
footer {
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    text-align: left;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


.points {
    list-style: none;
    font-size: 1.2rem;
    color: #444;
}

.points li {
    margin: 10px 0;
    padding: 10px;
    background: #e6f7ff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer Styling with Background */
footer {
    background: url('footer.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 10px 20px;
    text-align: left;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
