body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    background-color: #f0f0f0;
}

/* Header Section */
.header {
    width: 100%;
    text-align: center;
    padding: 30px 0 0 0;
}

.logo {
    width: 120px;
    height: auto;
}

/* Image Block Section */
.image-block {
    width: 100%;
    height: 70vh;
    background: url('img/bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    max-width: 80%;
}

.content h1 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.content p {
    margin: 0;
    font-size: 0.8em;
}

.content a {
    color: #fff;
}

/* Footer Section */
.footer {
    width: 100%;
    padding: 0 0 30px 0;
    text-align: center;
}

.social-icons a {
    margin: 0 10px;
    color: #96012d;
    text-decoration: none;
    font-size: 24px;
}

.social-icons .fa:hover {
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .image-block {
        height: 85vh;
    }

    .content h1 {
        font-size: 1.8em;
    }

    .content p {
        font-size: 1.2em;
    }

    .logo {
        width: 150px;
    }
    .header {
        padding: 20px 0;
    }
    .footer {
        padding: 20px 0;
    }
}

/* Responsive Adjustments */
@media (min-width: 2000px) {
    .image-block {
        width: 70%;
        height: 85vh;
    }

    .content h1 {
        font-size: 1.8em;
    }

    .content p {
        font-size: 1.2em;
    }

    .logo {
        width: 150px;
    }
    .header {
        padding: 20px 0;
    }
    .footer {
        padding: 20px 0;
    }
}