* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #0056b3;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header img {
    margin-top: 10px;
    max-height: 70px;
}

.site-header .site-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.site-header .site-nav ul li a {
    font-size: 18px;
}

.hero {
    background-image: url('../images/banner.jpg');
    background-size: auto;
    background-position: center;
    height: 900px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20%;
    text-align: left;
}

.hero-content {
    padding: 20px;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
}

.hero-content h1 {
    font-size: 46px;
    color: #1e73be;
    margin-bottom: 10px;
}

.hero-content p {
    color: #7bb241;
    font-size: 20px;
}

.info-blocks {
    padding: 50px 0;
    background-color: #f4f4f4;

}

.membership-section {
    text-align: center;
    background-color: #fff;
    margin: 50px auto;
    padding: 40px 20px;
    max-width: 1200px;
    border-radius: 3px;

}

.membership-title {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 30px;
}

.membership-subtitle {
    font-size: 26px;
    color: #007f3f;
    padding-top: 30px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.membership-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.qr-code {
    display: block;
    height: 160px;
    margin: 80px 100px;
}

.overlap {
    position: relative;
    margin-top: -200px;
    height: 320px;
    background-color: white;
}

.app-badge {
    display: block;
    height: 40px;
    margin: 0 auto;
}

.site-footer {
    background-color: #333;
    padding: 10px 0;
    color: #fff;
    text-align: center;
}

.site-footer p {
    font-size: 14px;
}


.services-section {
    position: relative;
    background-color: #e6e6e6;
    padding: 10px 20px;
    text-align: center;
}

.section-header .small-title {
    font-size: 18px;
    color: #8ed644;
    letter-spacing: 3px;
}

.section-header .main-title {
    font-size: 30px;
    color: #00887d;
    margin-bottom: 10px;
}


.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-card {
    background-color: #e6e6e6;
    border: 1px solid #63b241;
    border-radius: 10px;
    padding: 10px;
    width: 250px;
    text-align: center;
    height: 250px;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    max-width: 40px;
    margin-bottom: 10px;
    margin-top: 10px;
}


.sunglasses img {
    max-width: 50px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.flip-card {
    background-color: transparent;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.flip-card-front {
    background-color: #e6e6e6;
}

.flip-card-back {
    background-color: #00758a;
    color: white;
    transform: rotateY(180deg);
    border: 1px solid #00758a;
}

.flip-card-back .service-content {
    font-size: 16px;
    line-height: 1.4;
    color: white;
    text-align: left;
    margin: 0;
}

.service-card .service-title {
    font-size: 20px;
    color: #0056b3;
}

@media (max-width: 768px) {
    .services-container {
        gap: 15px;
    }

    .service-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .services-container {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }
}



.footer {
    background-color: #fff;
    color: #0056b3;
    padding-top: 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    display: block;
    margin-bottom: 5px;
}

.company-name {
    color: #333;
    font-size: 14px;
}

.footer-center {
    text-align: center;
}

.divider {
    width: 1px;
    height: 20px;
    background-color: #ddd;
    margin: 0 auto;
}

.health365 {
    color: #007bff;
    font-size: 14px;
    margin-top: 10px;
}

.footer-right p {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.icon img {
    max-height: 20px;
    margin-right: 5px;
}

.footer-bottom {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: #666;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.footer-left img {
    max-height: 130px;
}


.sec_1 {
    background-image: url('../images/whatwedo2.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.sec_1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 61, 82, 0.5);
    z-index: 1;
}


.sec_1-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.sec_1 h1 {
    margin: 0;
    font-size: 3rem;
    z-index: 3;
}

.vision-section {
    background-color: #fff;
    padding: 100px 10px;
    text-align: left;
}

.vision-content h6 {
    font-size: 1rem;
    color: #0e6c99;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 5px;
}

.vision-content h1 {
    font-size: 2.5rem;
    font-weight: normal;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-content h1 span {
    font-size: 3rem;
    color: #0e6c99;
    font-weight: normal;
}

.vision-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-section {
    background-color: rgba(0, 0, 0, 0.30);
    padding: 100px 10px;
    text-align: left;
}

.mission-content h6 {
    font-size: 1rem;
    color: #8ed700;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 5px;
}

.mission-content h1 {
    font-size: 2.5rem;
    font-weight: normal;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

.mission-content h1 span {
    font-size: 3rem;
    color: #8ed700;
    font-weight: normal;
}

.mission-content p {
    font-size: 1.2rem;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    background-color: #fff;
    padding: 20px 10px;
    text-align: center;
    font-size: 1.2rem;
}

.privacy-section a {
    color: black;
}

.privacy-section a:hover {
    color: rgb(72, 119, 173);
    text-decoration: none;
}

.the-privacy-head {
    background-color: #0c8a87;
    padding: 80px 10px;
    text-align: center;
}

.the-privacy-head h1 {
    color: white;
    font-size: 3rem;
    padding: 80px 10px;
    text-align: center;
}

.the-privacy {
    background: #F6F6F6;
}

.policy-wrapper {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
}

.policy-section {
    padding-left: 20px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.policy-section p {
    text-align: justify;
}

.important {
    color: black;
    font-weight: bold;
}

.policy-section ol {
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1;
}

.policy-content .p-sec {
    font-size: 1rem;
    margin-top: 10px;
    color: black;
}

.policy-content ul {
    margin-bottom: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}