body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card-container {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.card {
    padding: 20px;
    text-align: center;
}

.card-header {
    margin-bottom: 20px;
}

.card-header img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card-header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.card-header h2 {
    font-size: 18px;
    color: #555;
}

.card-body .title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.card-body .contact-info p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

.card-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
    border-top: 1px solid #eaeaea;
    padding-top: 10px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.lightbox-content h2 {
    margin-top: 0;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
