:root {
    --primary-green: #4CAF50; /* A nice, dominant green */
    --secondary-green: #8BC34A; /* A lighter green for accents */
    --dark-green: #2E7D32;    /* A darker green for text/footer */
    --text-color: #333;
    --background-light: #F9F9F9;
    --white: #FFFFFF;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('background.jpeg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

header {
    background-color: rgba(76, 175, 80, 0.5); /* Semi-transparent header */
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    box-shadow: none;
    position: relative;
    z-index: 10;
}

.logo-container {
    margin-bottom: 15px;
}

.logo-container img {
    max-width: 250px;
    height: auto;
    filter: brightness(0) invert(1);
}

h1 {
    margin: 0;
    font-size: 3.5em;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.tagline {
    font-size: 1.5em;
    margin-top: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    color: var(--text-color);
}

.contact-info h2 {
    color: var(--dark-green);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.6;
}

.contact-details {
    margin: 30px 0;
    font-size: 1.3em;
}

.contact-details p {
    margin: 10px 0;
}

.contact-details a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.note {
    font-style: italic;
    color: #444;
    margin-top: 20px;
}

footer {
    background-color: rgba(46, 125, 50, 0.8); /* Semi-transparent footer */
    color: var(--white);
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-details {
        font-size: 1.1em;
    }
}

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

    .contact-info h2 {
        font-size: 1.8em;
    }

    .contact-details {
        font-size: 1em;
    }
}