/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #FFFFFF;
    color: #111827;
}
a {
    color: #1E3A8A;
    text-decoration: none;
}
a:hover {
    color: #163172;
    text-decoration: underline;
}
main {
    width: 100%;
    padding: 10px 0;
    margin: 0;
}

/* Header */
header {
    width: 100%;
    background-color: #F9FAFB;
    color: #111827;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative;
    border-bottom: 1px solid #E5E7EB;
}
.header-logo {
    height: 50px;
    margin-right: 10px;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-left p {
    font-size: 14px;
    color: #6B7280;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
nav ul li a {
    color: #111827;
    font-weight: bold;
}
nav ul li a.active {
    color: #10B981;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #111827;
}
#navbar.active {
    display: block;
}

/* Header Right Icons */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-icon img {
    height: 24px;
}
.sticky-button {
    background-color: #1ebd59;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
}
.sticky-button:hover {
    background-color: white;
    color: #1ebd59;
    border: 1px solid #1ebd59;
}

/* General Boxed Section Style */
.content-box {
    background-color: #F3F4F6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Section Headings */
h1, h2 {
    margin-bottom: 15px;
    color: #111827;
}
h1 u, h2 u {
    text-decoration: underline;
}

/* Paragraphs and Lists */
section p, section li {
    margin-bottom: 10px;
    font-size: 16px;
}
ul {
    margin-left: 20px;
    list-style: disc;
}

/* Footer */
footer {
    width: 100%;
    background-color: #F9FAFB;
    color: #111827;
    padding: 15px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #E5E7EB;
}
footer nav {
    margin-bottom: 10px;
}
footer nav a {
    margin: 0 10px;
    color: #111827;
    font-weight: bold;
}
footer nav a.active {
    text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1ebd59;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.whatsapp-float:hover {
    background-color: white;
    color: #1ebd59;
    border: 1px solid #1ebd59;
}

/* Form Button */
.form-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1ebd59;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px 0;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.form-button:hover {
    background-color: white;
    color: #1ebd59;
    border: 1px solid #1ebd59;
}

/* Pricing Table Box */
.pricing-table-box {
    width: 100%;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow-x: auto;
    margin: 20px 0;
}

/* Pricing Table Layout */
.pricing-header, .pricing-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    align-items: center;
}

.pricing-header {
    background-color: #E5E7EB;
    font-weight: bold;
    color: #111827;
    position: sticky;
    top: 0;
    z-index: 2;
}

.pricing-header div, .pricing-row div {
    padding: 15px;
    border-right: 1px solid #D1D5DB;
}

.pricing-header div:last-child, .pricing-row div:last-child {
    border-right: none;
}

.pricing-row {
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
}

/* Combo Offer Highlight */
.pricing-row.combo-offer {
    background-color: #f0f9ff;
    font-weight: bold;
    border: 2px solid #4facfe;
    border-radius: 10px;
}

/* Save Badge Style */
.save-badge {
    background-color: #ff5722;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 5px;
    display: inline-block;
}

/* Subscribe Button */
.subscribe-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.subscribe-button:hover {
    background-color: #1ebd59;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #F9FAFB;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #E5E7EB;
        border-bottom: 1px solid #E5E7EB;
    }
    #navbar.active ul {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .pricing-header, .pricing-row {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .pricing-header div, .pricing-row div {
        width: 100%;
        padding: 5px 0;
        border-right: none !important;
    }

    .pricing-row.combo-offer {
        border: 2px solid #4facfe;
        background-color: #e0f7ff;
    }

    .subscribe-button {
        margin-top: 5px;
    }
}
/* Hero Section */
.hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    background-color: #FFFFFF;
}
.hero-section img.logo {
    width: 200px;
    height: auto;
    margin-top: 0px;
    margin-bottom: 20px;
}
.hero-section h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111827;
}
.hero-section p {
    font-size: 16px;
    margin-bottom: 20px;
}
.hero-section button {
    background-color: #1E3A8A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.hero-section button:hover {
    background-color: #163172;
}


