body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 70px;
    overflow-x: hidden; /* Add this line */
}
header {
    background-color: #000000;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 5px solid transparent;
    border-image: linear-gradient(to right, #f3466e, #faca4f,#f3466e) 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 70px;
    position: relative;
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    bRabbit-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

.hero {
    background-image: url('images/Fortune-Rabbit-hero-desktop.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .hero {
        background-image: url('images/Fortune-Rabbit-hero-mobile.webp');
        background-position: top center;
        padding: 50px 0;
    }
}

.hero-content {
    max-width: 800px;
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #f22b63; /* Blue background for section buttons */
    color: white; /* White text for section buttons */
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #ffffff; /* Orange background on hover */
    color: #ff0048;
}

.btn-primary {
    background-color: #ffffff; /* Orange background for hero button */
    color: #ff0048;
}

.btn-primary:hover {
    background-color: #ff0048;
    color: #ffffff;
}

.btn-contact-us {
    background-color: #f22b63;
    color: #333;
}

.btn-contact-us:hover {
    background-color: #ff9900;
    color: #333;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}

.section-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}

.section-content img {
    max-width: 300px;
    border-radius: 10px;
}

.section-text {
    text-align: center;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Adds smooth scrolling on iOS */
    border-radius: 8px; /* Optional: adds nice rounded corners */
}
.promo-content {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.promo-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    bRabbit-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-basis: 30%;
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.promo-card p {
    font-size: 1rem;
    line-height: 1.4;
}

.promo-details {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.promo-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-details h4 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.promo-details ol {
    padding-left: 2rem;
}

.promo-details li {
    margin-bottom: 0.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    display: table !important;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.promo-button-container {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 2rem auto;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    align-self: center;
}

#contact {
    text-align: center;
}

.contact-button-wrapper {
    max-width: 600px;
    margin: 1rem auto;
}

.bg-light {
    background-color: #f4f4f4;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: #33000cf1;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding-top: 70px; /* Match header height */
    }

    .nav-links.active {
        left: 0;
    }

    nav ul li {
        margin: 16px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section-content {
        flex-direction: column;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .btn {
        padding: 0.8rem 1.5rem; /* Adjust padding for mobile */
        font-size: 1rem; /* Adjust font size for mobile */
        max-width: 100%; /* Ensure button doesn't overflow */
        bRabbit-sizing: border-bRabbit; /* Include padding and border in width */
    }
}
.customer-service-widget:hover {
    background-color: #e7e7e7;
    color:#f22b63
}

.customer-service-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f22b63;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    bRabbit-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}