@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #2C3E50;
    background-color: #F4F4F9;
}

header.hero {
    position: relative;
    height: 100vh;
    background-image: url('logos/For Web/png/Background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
}

header.hero .overlay {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
}

header.hero .logo {
    max-width: 180px;
    margin-bottom: 20px;
}

header.hero h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #1A1A40;
    margin-bottom: 20px;
}

header.hero .cta {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

header.hero .cta:hover {
    background-color: #0056b3;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.content-section {
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1A1A40;
    color: white;
    flex-wrap: wrap;
}

footer .logo {
    max-width: 150px;
}

footer .contact-info {
    text-align: right;
    font-size: 1.1em;
    line-height: 1.5;
}

footer .contact-info a {
    color: #007BFF;
    text-decoration: none;
}

footer .contact-info a:hover {
    text-decoration: underline;
}

footer .social-icon {
    margin-left: 10px;
    max-width: 24px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    header.hero h1 {
        font-size: 2em;
    }

    header.hero .cta {
        font-size: 14px;
        padding: 10px 20px;
    }

    .content-section {
        padding: 15px;
    }
}