/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;  /* White background */
    color: #333;
}

/* Navbar Styling */
.navbar {
    border-bottom: 1px solid #f57224;
    padding: 10px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f57224;
}

.nav-link {
    font-size: 1rem;
    padding: 10px;
    color: #333;
}

.navbar .btn-primary {
    background-color: #f57224;
    border-color: #f57224;
}

.navbar .btn-outline-primary {
    border-color: #f57224;
    color: #f57224;
}

.navbar .btn-outline-primary:hover {
    background-color: #f57224;
    color: #fff !important;
}

/* Container */
.container {
    background-color: #fff;  /* White background for all sections */
}

/* Additional Responsive Styles */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        text-align: center;
    }
    .navbar .btn {
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Hero Section */
#hero {
    background-color: #fff;  /* White background */
    color: #333;
}

/* Buttons */
.btn-primary {
    background-color: #f57224;
    border-color: #f57224;
}

.btn-primary:hover {
    background-color: #d65c1c;
    border-color: #d65c1c;
}

.btn-outline-secondary {
    color: #333;
    border-color: #f57224;
}

.btn-outline-secondary:hover {
    background-color: #f57224;
    color: #fff;
}

/* Benefit Icons */
#benefits .fas {
    color: #f57224;
}

h2 {
    color: #333;
}

/* Footer Styling */
footer {
    background-color: #fff;
    color: #333;
    padding: 40px 0;
    border-top: 1px solid #f57224;
}

footer h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

footer p {
    font-size: 0.9rem;
    color: #333;
}

footer a {
    color: #f57224;
    text-decoration: none;
    font-size: 0.9rem;
}

footer a:hover {
    color: #d65c1c;
}

.list-inline-item {
    margin-left: 15px;
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    .text-md-end {
        text-align: center !important;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

