* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.business-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    color: #777;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.contact-info a {
    color: #f4a261;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

.business-card , img{
    width: 70%;
}