body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5; /* Light grey background */
    color: #333; /* Dark grey text */
    text-align: center;
}

.container {
    background-color: #fff;
    /* padding: 40px; */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
    box-sizing: border-box;
}

header h1 {
    color: #2c3e50; /* Dark blue/grey, similar to the background of the "ALWA LOG LINKER" band */
    font-size: 2em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.logo-placeholder {
    /* background-color: #2c3e50; Dark blue/grey, matching the image */
    color: #ecf0f1; /* Light grey/silver for text inside the logo band */
    padding: 20px 20px;
    /* margin-bottom: 40px; */
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-placeholder img {
    /* max-width: 250px; */
    max-width: 50vw;
    height: auto;
    margin-bottom: 10px;
    /* filter: brightness(0) invert(1); */
}

.logo-placeholder .tagline {
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
}

.intro {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #555;
}

.description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
}

.contact-email a {
    color: #3498db; /* A vibrant blue for the email link */
    font-size: 1.4em;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #2980b9;
}

footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 0.9em;
    line-height: 1.6;
}

.contact-info p {
    margin: 5px 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    .logo-placeholder {
        padding: 20px 15px;
    }

    .logo-placeholder img {
        max-width: 200px;
    }

    .logo-placeholder .tagline {
        font-size: 1em;
    }

    .intro {
        font-size: 1.1em;
    }

    .description {
        font-size: 1em;
    }

    .contact-email a {
        font-size: 1.2em;
    }

    footer {
        font-size: 0.8em;
    }
}