* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background: url(images/redbackground4.png) center/cover;
    color: #333;
    overflow-x: hidden;
}

header {
    padding: 20px;
    background: #b31515e9;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center; /* Added to center header content */
}

.hero1 {
    background: url('mobile-friendly-image.jpg') no-repeat center center;
    background-size: cover;
    font-size: 24px;
    color: #ffffffe9;
    height: 570px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content {
    flex: 1;
}

footer {
    background: #b31515e9;
    padding: 15px;
    color: #fff;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.disclaimer{
    margin: 10px;
}

.icon {
    color: rgb(255, 252, 252);
    font-size: 24px;
    transition: 0.3s;
}

.icon:hover {
    color: #999;
}

@media (max-width: 600px) {
    footer {
        padding: 10px;
        font-size: 14px;
    }
}