body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    
    /* YOUR BACKGROUND IMAGE SOURCE - Make sure this path is correct! */
    /* Remember to update this to your .webp image filename after conversion! */
     background: url('img/your-image-namee.webp') center/cover no-repeat fixed; 
    
    background-color: #ffcdd2; /* Fallback color if the image doesn't load */
    
    display: flex;
    justify-content: center;
    align-items: center; 
    min-height: 100vh; 
    text-align: center;
    line-height: 1.6;
    overflow: hidden;
}

.container {
    background-color: rgba(0, 0, 0, 0.8); /* Darker semi-transparent background for better contrast */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    
    padding: 20px; /* Current padding */
    border-radius: 12px; 
    
    /* --- UPDATED: INCREASED MAX-WIDTH HERE --- */
    max-width: 700px; /* Increased from 500px to 700px */
    /* ----------------------------------------- */

    width: 95%; /* Ensures it's still responsive on smaller screens */
    z-index: 10; 
    position: relative; 

    margin-top: 150px; /* Adjust this value if you need to move the box up/down */
}

h3 {
    color: #b3e5fc; 
    font-size: 1.8em; 
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
}

p {
    color: #ffffff; 
    font-size: 1.2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
    opacity: 1; 
}

.contact-info {
    margin-top: 40px;
    margin-bottom: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.4); 
    border-bottom: 2px solid rgba(255, 255, 255, 0.4); 
    padding: 25px 0;
    opacity: 1; 
}

.contact-info p {
    color: #ffffff; 
    margin: 12px 0;
    font-size: 1.3em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
}

.contact-info a {
    color: #81d4fa; 
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); 
}

.contact-info a:hover {
    color: #4fc3f7; 
    text-decoration: underline;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 1);
}

/* New CSS for the 'Download Company Brochure' button */
.cta-button {
    font-size: 1.5em; /* Increased from 1.2em for better visibility */
    font-weight: bold;
    color: #e57373; /* Changed to a shade of red */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    border-bottom: 2px solid #e57373; /* Adds an underline that matches the text color */
    padding-bottom: 5px; /* Spacing for the underline */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.cta-button:hover {
    color: #ef5350; /* A slightly darker red for the hover state */
    border-bottom-color: #ef5350;
    transform: scale(1.05); /* A subtle scaling effect on hover */
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 1);
}