/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    margin: 0;
    padding: 0;
    background: url('/back.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container Styles */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    background: url('/back.jpg') no-repeat center center fixed;
    background-size: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
    min-height: 400px; /* Ensure it maintains height */
}

/* Header Styles */
header {
    background-color: rgba(30, 60, 90, 0); /* Fully transparent */
    color: white;
    padding: 0px;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    color: #333333;
    display: flex;
    align-items: center;
    flex-direction: column; /* Stack logo and text vertically on mobile */
    text-align: center; /* Center-align text on mobile */
}

.header-content .logo {
    height: 175px; /* Increased size */
    margin-right: 0; /* Remove margin on mobile */
    margin-bottom: 15px; /* Add spacing between logo and text */
}

.header-content h1 {
    color: #333333;
    margin: 0;
    font-size: 35px;
    text-align: center; /* Center-align heading on mobile */
}

/* Paragraph Styles */
.container p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

/* Start Here and About Us Buttons */
.start-button {

    display: inline-block;
    background-color: #ff7f50;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 127, 80, 0.2);
    margin-top: 20px;
    margin-right: 10px; /* Added spacing between buttons */
}

.start-button:hover {
    background: #e66a3a;
    transform: translateY(-2px);
    box-shadow: 0px 6px 15px rgba(255, 127, 80, 0.3);
}

/* Clear Footer Styles */
footer {
    background: transparent;
    color: #333;
    text-align: left;
    padding: 20px;
    font-size: 20px;
    box-shadow: none;
    position: relative;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 18px; /* Smaller font size for mobile */
    }

    .header-content h1 {
        font-size: 28px; /* Smaller heading for mobile */
    }

    .header-content .logo {
        height: 120px; /* Smaller logo for mobile */
    }

    .container {
        padding: 15px; /* Less padding for smaller screens */
        margin: 20px auto; /* Less margin for smaller screens */
    }

    .start-button {
        display: block; /* Stack buttons vertically on mobile */
        width: 70%; /* Full-width buttons */
        margin: 30px 0; /* Add spacing between stacked buttons */
    }

    footer {
        text-align: center; /* Center-align footer text on mobile */
        font-size: 16px; /* Smaller footer text for mobile */
    }
}