/* Reset basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #167562, #167562);
}

/* Container styling */
.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
}

/* Logo styling */
.logo {
    width: 750px;
    margin-bottom: 20px;
}

/* Welcome text */
.welcome-text {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

/* Description text */
.description-text {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Brochure button */
.brochure-btn {
    background-color: #167562;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    outline: none;
}

/* Hover effect for button */
.brochure-btn:hover {
    background-color: #00ff33;
    transform: scale(1.05);
}

/* Responsive media queries */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        max-width: 100%;
        display: flex;
        align-items: center;
    }
    
    .logo {
        width: 200px; /* Make the logo smaller on mobile */
        margin-bottom: 15px;
    }

    .welcome-text {
        font-size: 1.8rem;
    }

    .brochure-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px;
        display: flex;
        justify-content: center;
    }

    .container {
        padding: 1rem;
        max-width: 100%;
        align-items: center;
        display: flex;
        justify-content: center;

    }

    .logo {
        width: 150px; /* Make the logo smaller on mobile */
        margin-bottom: 15px;
    }

    .welcome-text {
        font-size: 1.5rem; /* Adjust the font size for mobile */
    }

    .description-text {
        font-size: 0.9rem; /* Smaller text for mobile */
        margin-bottom: 20px; /* Reduced bottom margin */
    }

    .brochure-btn {
        font-size: 0.9rem; /* Smaller button text size */
        padding: 0.7rem 1.5rem; /* Reduced padding */
    }
}
