/* General body styling for full-page centering */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f0f8ff, #d6e6f2);
    font-family: 'Poppins', sans-serif;
    color: #2d4a78;
}

/* Styling for the business card container */
.business-card {
    text-align: center;
    padding: 30px 40px;
    border: 2px solid #5a9bd8;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the card */
.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Styling for the header */
.business-card h1 {
    margin: 0 0 15px;
    font-size: 27px;
    font-family: 'Lobster', cursive;
    font-weight: 400;
    color: #3b82c4;
    letter-spacing: 0.5px;
}

/* Styling for the text */
.business-card p {
    margin: 8px 0;
    font-size: 18px;
    color: #2d4a78;
}

/* Styling for links */
.business-card a {
    text-decoration: none;
    color: #3b82c4;
    font-weight: 500;
}

.business-card a:hover {
    text-decoration: underline;
}

/* Add some spacing for better readability on smaller screens */
@media (max-width: 400px) {
    .business-card {
        padding: 20px;
        max-width: 90%;
    }
}
