body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff; /* White background as seen in the image */
    color: #333; /* Dark gray for text, adjust as needed */
    text-align: center;
    padding: 20px;
    box-sizing: border-box; /* Include padding in the element's total width and height */
}

.container {
    max-width: 700px; /* Adjust max-width as needed */
    width: 100%;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px; /* Optional: if you want rounded corners for the content box */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); Optional: if you want a subtle shadow */
}

.logo img {
    max-width: 605px; /* Adjust based on your logo's size */
    height: auto;
    margin-bottom: 97px;
    display: block; /* Ensures the image behaves like a block element */
    margin-left: auto; /* Centers the image */
    margin-right: auto; /* Centers the image */
}

/* If you're using text for the logo (uncomment in HTML to use these styles) */
/*
.hi-case-text {
    font-size: 3em;
    font-weight: 600;
    color: #000;
    margin-bottom: -10px;
}

.professional-flightcases-text {
    font-size: 0.9em;
    font-weight: 400;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
*/

h1 {
    font-size: 2.2em; /* Adjust font size for the main title */
    color: #0D7BC0; /* Purple color, similar to the image */
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    padding: 0 15px; /* Add some horizontal padding for better readability on smaller screens */
}

.contact-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff; /* White background for the button */
    color: #0D7BC0; /* Purple text color */
    border: 2px solid #4b0082; /* Purple border */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
    background-color: #0D7BC0; /* Purple background on hover */
    color: #fff; /* White text on hover */
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .description {
        font-size: 1em;
    }

    .logo img {
        max-width: 200px;
    }

    .contact-button {
        padding: 10px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    .description {
        font-size: 0.9em;
    }

    .logo img {
        max-width: 150px;
    }

    .contact-button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}