/* General Styles */
body {
    font-family: 'Neue Haas Grotesk', sans-serif; /* Updated font */
    margin: 0;
    padding: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Arrange sections vertically */
    min-height: 100vh;
    box-sizing: border-box;
    text-align: center; /* Center align all text */
}

header {
    background-color: white; /* White background for the logo section */
    color: #000000; /* Black text */
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
}

header .logo img {
    width: 300px; /* Very large logo size */
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    margin: 0;
    color: #be1622; /* Red color for the header text */
}

h2 {
    color: #be1622; /* Red color for section titles */
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000; /* Black color for paragraph text */
}

/* Contact Button Styles */
.contact-buttons {
    margin-top: 20px;
}

.contact-buttons a {
    display: inline-block;
    background-color: #be1622;
    color: white;
    padding: 12px 20px;
    margin: 10px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.contact-buttons a:hover {
    background-color: #a9141e;
}

/* Footer Styles */
footer {
    text-align: center;
    background-color: #be1622; /* Red footer */
    color: white;
    padding: 10px;
    width: 100%;
    bottom: 0;
}

/* Responsive Styles */

/* For tablets (portrait) and smaller screens */
@media (max-width: 768px) {
    header .logo img {
        width: 200px; /* Smaller logo on smaller screens */
    }

    h1 {
        font-size: 28px; /* Smaller heading font size */
    }

    section {
        padding: 15px;
    }

    .contact-buttons a {
        font-size: 16px; /* Slightly smaller contact button links */
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    header .logo img {
        width: 150px; /* Even smaller logo on mobile */
    }

    h1 {
        font-size: 24px; /* Smaller heading font size */
    }

    p, h2 {
        font-size: 14px; /* Smaller text on small screens */
    }

    .contact-buttons a {
        font-size: 14px; /* Smaller contact button links */
    }
}
