body {
    font-family: 'Lato', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
	padding-bottom: 20px;
}

.business-card {
    background: linear-gradient(135deg, #ffffff, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
	margin-top: 20px;
	margin-bottom: 20px;
}

.photo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.photo img {
    width: 70%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bio h1 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #343a40;
}

.bio p, .offer-bio p {
    font-size: 16px;
    color: #6c757d;
    text-align: justify;
    line-height: 1.6;
}

.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #495057;
}

.contact-info i {
    margin-right: 10px;
    color: #343a40;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}

.back-link, .offer {
    margin-top: 20px;
}

.back-link a, .offer a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.back-link a:hover, .offer a:hover {
    color: #0056b3;
}

.download-button {
    text-align: center;
    margin-top: 30px;
	margin-bottom: 20px;
}

.download-button a {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.download-button a:hover {
    background-color: #0056b3;
}

.offer-list {
    margin-top: 20px;
    text-align: center;
}

.offer-list p {
    margin: 10px 0;
    font-size: 18px;
    color: #495057;
}

.offer-list i {
    margin-right: 10px;
}

@media (min-width: 768px) {
    body {
        align-items: center;
        padding-top: 0;
    }

    .business-card {
        max-width: 800px;
    }

    .bio h1 {
        font-size: 28px;
    }

    .bio p, .offer-bio p {
        font-size: 18px;
    }

    .contact-info p, .offer-list p {
        font-size: 20px;
    }

    .photo img {
        width: 50%;
    }
}

/* Keyframes for animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
