* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 700px;
}

.logo {
    max-width: 240px;
    margin-bottom: 30px;
}

h1 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2b2f3a;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
}

.contact-card h2 {
    margin-bottom: 15px;
    color: #0c6b58;
}

.contact-card p {
    margin: 8px 0;
    font-size: 16px;
}

footer {
    margin-top: 35px;
    font-size: 14px;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {

    h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .container {
        padding: 20px;
    }

}
