/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    width: 100%;
    text-align: center;
}

main {
    flex: 1;
    text-align: center;
}

/* Header Styles */
header h1, header p, .coming-soon, address a, address {
    margin: 0;
    padding: 20px;
    color: #25354f; /* Apply the same color code to all textual elements in the header */
}

/* Footer Styles (if you have footer styles) */
footer p {
    color: #25354f; /* Ensure this matches the header's color for consistency */
}