/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 50px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.search-bar {
    display: flex;
}

.search-bar input {
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 5px;
}

.search-bar button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: #28a745;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-content button {
    background-color: #ffc107;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}

/* About Us Section */
.about-us {
    padding: 50px 0;
    text-align: center;
}

.about-us h2 {
    color: #28a745;
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.why-choose-us h2 {
    color: #28a745;
    margin-bottom: 40px;
}

.why-choose-us .reasons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.why-choose-us .reason-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 22%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.why-choose-us .reason-item h3 {
    color: #007bff;
    margin-bottom: 10px;
}

/* Our Units Section */
.our-units {
    padding: 50px 0;
    text-align: center;
}

.our-units h2 {
    color: #28a745;
    margin-bottom: 20px;
}

/* Plans Section */
.plans {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.plans h2 {
    color: #28a745;
    margin-bottom: 20px;
}

.plans .plan-locations button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

/* Contact Us Section */
.contact-us {
    padding: 50px 0;
    text-align: center;
}

.contact-us h2 {
    color: #28a745;
    margin-bottom: 20px;
}

/* Latest News Section */
.latest-news {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.latest-news h2 {
    color: #28a745;
    margin-bottom: 20px;
}

.latest-news .news-articles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.latest-news .news-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 30%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}

.latest-news .news-item h3 {
    color: #007bff;
    margin-bottom: 10px;
}

.latest-news .news-item span {
    font-size: 0.9em;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .footer-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

footer .footer-col {
    width: 18%;
    margin-bottom: 20px;
}

footer .footer-col h3 {
    color: #28a745;
    margin-bottom: 15px;
}

footer .footer-col ul {
    list-style: none;
    padding: 0;
}

footer .footer-col ul li a {
    text-decoration: none;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

.social-icons, .app-stores {
    margin-top: 10px;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #555;
}




.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}


