body {
    font-family: "Helvetica", sans-serif;
    background-color: #f7f7f7;
    color: #555;
    padding: 30px 0;
}

.container {
    margin: 0 auto;
    display: block;
    max-width: 900px;
}

img.logo {
    width: 100%;
    max-width: 150px;
    display: block;
    margin: 10px auto 0;
}



.social-share {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.share-label {
    margin-right: 10px;
    font-size: 1rem;
}

.social-share a {
    margin-left: 10px;
    font-size: 1.5rem;
}

@media (max-width: 576px) {
    .social-share {
        flex-direction: row;
        justify-content: center;
    }
}

/* Existing styles */
.tab-wrap {
    transition: 0.3s box-shadow ease;
    border-radius: 6px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    list-style: none;
    background-color: #fff;
    margin: 40px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.tab-wrap:hover {
    box-shadow: 0 12px 23px rgba(0, 0, 0, 0.23), 0 10px 10px rgba(0, 0, 0, 0.19);
}

.tab {
    display: none;
}

.tab__content {
    padding: 20px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    transform: translateY(-3px);
    border-radius: 6px;
}

.tab+label {
    box-shadow: 0 -1px 0 #f2f2f2 inset;
    border-radius: 0;
    cursor: pointer;
    flex-grow: 3;
    text-align: center;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
    height: 50px;
    padding: 15px;
    background-color: #f2f2f2;
    color: #333;
    user-select: none;
}

.tab+label:hover {
    background-color: #e8e8e8;
}

.tab:checked+label {
    background-color: #fff;
    box-shadow: 0 -1px 0 #fff inset;
}

.tab:checked:nth-of-type(1)~.tab__content:nth-of-type(1),
.tab:checked:nth-of-type(2)~.tab__content:nth-of-type(2),
.tab:checked:nth-of-type(3)~.tab__content:nth-of-type(3) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.imgbox {
    display: flex;
    justify-content: center;
}

.center-fit {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    margin: 0;
    color: #444;
    text-align: center;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.description {
    margin-top: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9em;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9em;
    color: #555;
}

.btn-primary, .btn-secondary {
    border-radius: 10px;
    font-weight: 500;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    margin-right: 10px;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.card img {
    object-fit: cover;
    object-position: top center;
    height: 200px;
    width: 100%;
}

@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        margin: 5px 0;
        width: 100%;
    }
}