
.header {
    text-align: center;
    padding: 40px;
    background-color: #0f454e;
    color: white;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 36px;
    font-weight: 700;
}


.header p {
    font-size: 18px;
}

/* Sidebar styles */
.sidebar {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    color: #77ac1a;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    background-color: #77ac1a;
    color: #fff;
}

.sidebar ul li a i {
    margin-right: 10px;
}

/* Pricing card layout */
.pricing-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Card header styles */
.pricing-card .card-header {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #77ac1a;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    width: 100%;
    text-align: center;
}

.pricing-card .price {
    font-size: 25px;
    font-weight: 700;
    color: #77ac1a;
}

.pricing-card .price-period {
    font-size: 16px;
    color: #777;
}

.pricing-details {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.price-container {
    text-align: center;
    margin-top: 10px;
}

.features-container {
    text-align: left;
    width: 100%;
}

.features-container ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.features-container ul li {
    margin: 8px 0;
    font-size: 15px;
}

/* Button styles */
.btn-order {
    display: inline-block;
    padding: 5px 5px;
    background-color: #77ac1a;
    color: white;
    text-align: center;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-order:hover {
    background-color: #77ac1ac4;
    color: #fff;
    text-decoration: none;
}

/* Footer section */
.footer {
    background-color: #f1f1f1;
    padding: 15px;
    text-align: center;
    margin-top: 30px;
    border-radius: 8px;
}

/* Custom Active Tab Styles */
.nav-tabs .nav-link.active {
    background-color: #77ac1a !important;
    color: #fff !important;
    font-weight: bold;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .pricing-details {
        flex-direction: column;
        text-align: center;
    }

    .price-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    /* Sidebar collapse */
    .sidebar {
        margin-bottom: 30px;
    }

    .col-md-9, .col-md-3 {
        margin-bottom: 20px;
    }
}
