/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #1a3a5a; /* Dark blue from your logo */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

header h2 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 700;
}

.logo {
    width: 100%;
    max-width: 300px; /* Adjust based on your preference */
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a3a5a;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10%;
}

.cta-btn {
    background-color: #5d8aa8; /* Muted blue from design */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #1a3a5a;
}

footer {
    margin-top: 50px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #1a3a5a;
    font-weight: bold;
    font-size: 0.9rem;
}

footer p {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    header h2 {
        font-size: 0.8rem;
    }
}