.footer {
    background-color: #eeeeee !important;
}

.flex-menu {
    list-style: none;
    padding: 0;
    font-size: 19px !important;
    color: #777335;
}

.flex-menu li a {

    color: #777335;
}


.flex-menu li {
    display: block;
}


@media (min-width: 768px) {
    .flex-menu {
        display: flex;
        justify-content: space-around;
    }

    .flex-menu li {
        display: inline-block;
    }
}


.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-media li {
    display: inline-block;
}

.social-media a {
    text-decoration: none;
    color: #777335;
    font-size: 30px;
    display: flex;
    align-items: center;
}

.social-media i {
    margin-right: 8px;
}

.social-media a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .social-media a {
        font-size: 24px;
    }

    .social-media {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .site-title {
        font-size: 16px !important;
    }
}


.accordion-button {
    font-weight: bold;
    color: #007bff;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #f7f7f7;
    padding: 15px;
}

.pricing-item {
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-duration {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.btn-price {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.btn-price:hover {
    background-color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

table,
th,
td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
}

th {
    background-color: #f2f2f2;
}

td {
    background-color: #fafafa;
}

.note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #777;
}

ol {
    font-size: 15.6px !important;
    color: #15171a;
    font-family: 'Poppins';
    line-height: 2;
    text-align: left;
    list-style-type: decimal;

}


.principles-list li {
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
    text-align: left;
    font-family: 'Poppins';
    color: #15171a;
    ;
}

.principles-list li::before {
    content: "•";
    position: absolute;
    left: -11px;
    color: #0066cc;
    font-size: 30px;
    top: -12px;
}

.principles-list li {
    font-size: 14.5px;
    line-height: 1.5;
}

h3 {
    font-size: 20px;
    color: rgb(73, 73, 73);
    text-align: left;
    margin-top: 30px;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 87px;
    right: 27px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/* Active link styling */
.navbar-nav .nav-item a.active {
    font-weight: bold;
    color: red !important; /* Adjust the color as needed */
}

/* Hover effect - underline */
.navbar-nav .nav-item a:hover {
    text-decoration: underline;
    text-underline-offset: 10px; /* Adds a little space between the text and the underline */
    color: red; /* Change color on hover if you like */
}

/* Transition for smooth hover effect */
.navbar-nav .nav-item a {
    transition: color 0.3s ease, text-decoration 0.3s ease;
}
