html {
    overflow-y: scroll !important;
}



::-moz-selection {
    background-color: var(--primary);
    color: var(--white);
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

:root {
    --primary: #57c21c;
    --primary-hover: #4ca918;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    height: 70px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    top: 0;
    width: 100%;
    z-index: 1000;
}

header.header-home {
    position: absolute;
    background: transparent;
    box-shadow: none;
}

header.header-internal {
    position: relative;
    background: var(--bg-light);
    box-shadow: var(--shadow);
}



header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 160px;
    height: 40px;
}

@media (min-width: 1201px) {
    .logo {
        margin-left: 60px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .logo {
        margin-left: 20px;
    }
}

.logo img {
    height: 40px;
    width: 160px;
    display: block;
    object-fit: contain;
}



.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 1rem;
}

nav ul li a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: rgba(87, 194, 28, 0.05);
    border: 1px solid rgba(87, 194, 28, 0.15);
    padding: 8px 16px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lang-btn:hover {
    background: rgba(87, 194, 28, 0.1);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(87, 194, 28, 0.15);
}



.lang-btn .btn-globe {
    display: inline-block;
    vertical-align: middle;
}

.lang-btn .btn-flag {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {

    .lang-btn i {
        display: none !important;
    }

    .lang-btn .btn-globe {
        display: block !important;
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .lang-btn .btn-flag {
        display: none !important;
    }

    .lang-btn {
        background: #f0f2f5 !important;
        border-radius: 50% !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        min-width: unset !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
        gap: 0 !important;
    }

    .lang-btn:active {
        transform: scale(0.95);
    }


}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    margin-top: 0;
    display: none !important;
    min-width: 340px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 9999;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}



.lang-dropdown.active {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px;
}

@media (max-width: 500px) {
    .lang-dropdown {
        right: -10px;
    }
    .lang-dropdown.active {
        min-width: 280px !important;
        width: calc(100vw - 30px) !important;
        max-width: 360px !important;
        padding: 10px;
    }
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 10px;
    color: var(--text-dark);
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-dropdown a img {
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    width: 22px;
    height: 16px;
    object-fit: cover;
}

.lang-dropdown a:hover {
    background: rgba(87, 194, 28, 0.08);
    color: var(--primary);
}

.lang-dropdown a.active {
    background: rgba(87, 194, 28, 0.1);
    color: var(--primary);
    font-weight: 700;
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    margin-right: 15px;
    width: 35px;
    text-align: left;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .hero-image {
    text-align: left;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .faq-icon {
    margin-left: 15px;
    margin-right: 0;
}

[dir="rtl"] .btn-download i {
    margin-left: 8px;
    margin-right: 0;
}




/* Hero Section */
.hero {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0 0 40px;
    margin-top: -70px;
    padding-top: 140px;
    position: relative;
    overflow: visible;
    z-index: 5;
    transition: var(--transition);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    /* Default low blur for visibility */
    filter: blur(20px);
    opacity: 0.7;
    animation: float 15s ease-in-out infinite alternate;
    will-change: transform;
    /* Performance optimization for many elements */
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -40px) scale(1.05);
    }
}

.shape-green-big {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #57c21c !important;
    border-radius: 50%;
    top: 0;
    right: 5%;
    filter: none;
    opacity: 1 !important;
    z-index: 1;
}

.shape-green-small {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #57c21c !important;
    border-radius: 50%;
    top: 0;
    right: 2%;
    filter: none;
    opacity: 0.75 !important;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-left: 80px;
    position: relative;
    z-index: 2;
    /* Place content above background shapes */
}

.hero-content {
    flex: 0.5;
    /* Balanced for 720px image */
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-download {
    background: var(--primary);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 8px;
    /* Matching the provided image */
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(87, 194, 28, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    width: fit-content;
    text-transform: uppercase;
    /* Capitalized text */
    letter-spacing: 0.5px;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.security-verified {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 5px;
    /* Slight offset to align with button text */
}

.security-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.security-header img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.security-partners {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.partner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
}

.partner img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.btn-download .btn-icon-side {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .security-verified {
        align-items: center;
        margin-top: 15px;
        padding-left: 0;
    }

    .security-partners {
        justify-content: center;
        gap: 15px;
    }

    .security-header {
        font-size: 1.1rem;
    }
}

.hero-image {
    flex: 1.5;
    text-align: right;
}

.hero-image img {
    width: 720px;
    /* Precise Desktop Size */
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 45px;
    }

    .hero .container {
        padding-left: 40px;
        gap: 30px;
    }

    .hero-image img {
        width: 600px;
    }

    .shape-green-big {
        width: 400px;
        height: 400px;
        right: 0;
    }
}

/* Content Sections */
.section {
    padding: 60px 0;
}

.section-gray {
    background: var(--bg-gray);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.section-title.styled-heading {
    position: relative;
    background: var(--bg-gray);
    padding: 5px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.section-title.styled-heading::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--primary);
    border-radius: 3px;
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
}

.app-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.app-card:hover {
    transform: translateY(-10px);
}

.app-card img {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin-bottom: 15px;
}

.app-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.version-badge {
    background: #e8f5e9;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}



/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    margin-bottom: 15px;
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
}

.faq-icon {
    background: var(--white);
    color: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-answer {
    padding: 20px;
    display: none;
    color: var(--text-muted);
    font-size: 16px;
}



/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Go to Top */
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Center main menu on desktop */
@media (min-width: 1025px) {
    nav#main-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {

    header.header-home,
    header.header-internal {
        background: var(--bg-light) !important;
        box-shadow: none !important;
        border-bottom: none !important;
        position: relative;
        display: flex;
        flex-direction: column;
        height: auto;
    }

    header .container {
        height: 70px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle,
    .lang-btn {
        color: var(--text-dark) !important;
    }



    .hero {
        margin-top: 0;
        padding-top: 0;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        margin-bottom: 20px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-left: 20px;
        gap: 15px;
        /* Tighter gap between text and button */
        justify-content: flex-start;
    }

    .btn-download {
        width: 95%;
        max-width: 400px;
        justify-content: center;
        padding: 16px 20px;
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .hero {
        overflow: visible;
        padding: 25px 0 40px;
        /* Reduced bottom padding to fix excessive space */
    }

    .hero-content {
        order: 1;
        /* Move text content to top */
    }

    .hero-image {
        order: 2;
        /* Move image to bottom */
        text-align: center;
        width: 100%;
        overflow: visible;
        /* Allow bounce overflow */
    }

    .hero-image img {
        width: 433px;
        /* Exact 433x433 pixels as requested */
        max-width: 433px;
        height: 433px;
        object-fit: contain;
        margin-top: 10px;
        display: block;
        margin-left: calc(50% - 216.5px);
        /* Precisely center 433px image */
        margin-right: auto;
        animation: none !important;
    }

    /* Green Circles Mobile Positioning */
    .shape-green-big {
        width: 250px;
        height: 250px;
        background: #57c21c !important;
        top: 65% !important;
        left: 10% !important;
        opacity: 1 !important;
        filter: none !important;
        z-index: 1;
    }

    .shape-green-small {
        display: none !important;
    }

    .social-sidebar {
        display: none;
    }

    nav#main-nav {
        width: 100%;
        background: var(--bg-light);
        padding: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: none;
    }



    nav#main-nav.slide-in {
        max-height: 400px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }



    nav#main-nav ul {
        flex-direction: column;
        gap: 0;
        display: flex;
        padding: 8px 0;
    }

    nav#main-nav ul li a {
        display: block;
        padding: 16px 24px;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background 0.2s, color 0.2s, padding-left 0.2s;
    }



    nav#main-nav ul li:last-child a {
        border-bottom: none;
    }

    nav#main-nav ul li a:hover {
        background: var(--bg-gray);
        color: var(--primary);
        padding-left: 34px;
    }

    .mobile-menu-toggle {
        display: flex;
        background: var(--bg-light);
        border: 1px solid rgba(0, 0, 0, 0.08);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--text-dark);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:active {
        transform: scale(0.92);
        background: var(--bg-gray);
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px !important;
    }

    .hero-content h2 {
        font-size: 32px !important;
    }
}

/* Page Container */
.page-container {
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: var(--bg-light) !important;
    min-height: 80vh;
}

.page-container .container {
    max-width: 800px !important;
    padding-left: 45px !important;
    padding-right: 45px !important;
    margin: 0 auto !important;
}

.page-container p {
    font-size: 17.6px !important;
    line-height: 1.8 !important;
    margin-bottom: 25px !important;
}

.page-container h2 {
    font-size: 28px !important;
    margin: 45px 0 20px !important;
}

.page-container ul {
    margin-bottom: 25px !important;
    padding-left: 25px !important;
}

.page-container li {
    font-size: 17.6px !important;
    margin-bottom: 15px !important;
    list-style-type: disc !important;
}



.content-box {
    background: var(--bg-light);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}



.content-box h3 {
    margin: 25px 0 15px;
    color: var(--primary);
}

.content-box p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.content-box ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.content-box ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Hero Extra Text */
.hero-extra-text {
    font-size: 17.8px;
    margin-top: 25px;
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.5;
    font-weight: 500;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        text-align: center;
        margin-top: 40px;
        padding: 0 15px;
        width: 100%;
        order: 3;
    }
}

.py-5 {
    padding: 3rem 0 !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    align-items: center;
    background: #57c21c;
    border-radius: 18px;
    overflow: hidden;
    height: 94px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon-part {
    background: #000;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 94px;
    flex-shrink: 0;
}

.feature-icon-part img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-text-part {
    padding: 0 25px;
    flex: 1;
}

.feature-text-part h3 {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin: 0;
    line-height: 1.25;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }

    .feature-box {
        height: 86px;
    }

    .feature-icon-part {
        width: 86px;
    }

    .feature-icon-part img {
        width: 44px;
        height: 44px;
    }

    .feature-text-part {
        padding: 0 20px;
    }

    .feature-text-part h3 {
        font-size: 28px;
        margin: 0;
    }
}

/* Detailed Features Section */
.detailed-features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.detailed-features-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.detailed-feature-card {
    background: #57c21c;
    border-radius: 50px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(87, 194, 28, 0.15);
    transition: transform 0.3s ease;
}

.detailed-feature-card:hover {
    transform: translateY(-10px);
}

.detailed-feature-card h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 800;
    color: #fff;
}

.detailed-feature-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.detailed-feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


@media (max-width: 1024px) {
    .detailed-feature-card {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .detailed-feature-card h2 {
        font-size: 32px;
    }

    .detailed-feature-card p {
        font-size: 1.1rem;
    }
}

/* Why Use Section */
.why-use-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-use-content h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.why-use-content h3:first-child {
    margin-top: 0;
}

.why-use-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-use-content ul {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0;
    list-style-type: none;
    counter-reset: why-use-counter;
}

.why-use-content ul li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 15px;
}

.why-use-content ul li::before {
    counter-increment: why-use-counter;
    content: counter(why-use-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(87, 194, 28, 0.3);
}

/* Install Steps Section */
.install-steps-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.install-steps-content p {
    position: relative;
    padding: 18px 25px 18px 60px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}



.install-steps-content p::before {
    content: "➤";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 22px;
}

/* Compatibility Section */
.compatibility-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.compatibility-content h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.compatibility-content p,
.compatibility-list {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.compatibility-list {
    list-style-type: none;
    padding-left: 0;
}

.compatibility-list li {
    margin-bottom: 8px;
}

/* Pros Cons Table */
.pros-cons-table {
    width: 100%;
    margin: 20px auto 0;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pros-cons-table th,
.pros-cons-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-size: 1.1rem;
    vertical-align: top;
}



.pros-cons-table th {
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.pros-cons-table th:last-child {
    background: #e74c3c;
}

.pros-cons-table th:first-child,
.pros-cons-table td:first-child {
    width: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}



.pros-cons-table tr:last-child td {
    border-bottom: none;
}

/* Simple Comparison Table */
.comparison-table {
    width: 100%;
    margin: 30px auto 0;
    border-collapse: collapse;
    background: var(--white); /* White in light mode */
    border: 1px solid #e2e8f0;
}



.comparison-table th, 
.comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
    font-size: 16px;
}



.comparison-table th {
    font-weight: 700;
    background: #f8fafc;
    color: #1e293b;
}



@media (max-width: 768px) {
    .comparison-table {
        display: table;
        width: 100%;
        overflow-x: hidden;
        white-space: normal;
        word-break: break-word;
        table-layout: fixed;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 10px 8px;
        font-size: 16px;
    }
}

/* Pros and Cons Specific Colors */
.comparison-table.pros-cons-style th:first-child {
    background-color: #57c21c; /* HappyMod Green */
    color: #ffffff;
}

.comparison-table.pros-cons-style th:last-child {
    background-color: #e74c3c;
    color: #ffffff;
}

/* Comparison Highlight Colors */
.comparison-table.comparison-highlight th:nth-child(2) {
    background-color: #57c21c;
    color: #ffffff;
}

/* ─── Footer ───────────────────────────────────────────────── */
footer {
    background: #57c21c;
    padding: 20px 0;
    border-top: none;
    text-align: center;
}

footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin: 0 auto;
}

footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s, opacity 0.2s;
}

footer .footer-links a:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* ─── Go-Top (Red Circle) ───────────────────────────────────── */
.go-top {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(231, 76, 60, 0.45);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
}

.go-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top:hover {
    background: #c0392b;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.55);
    transform: translateY(-2px);
}

/* ─── Copyright Bar (below go-top red circle in HTML) ──────── */
.copyright-bar {
    background: #ffffff;
    color: #555555;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    border-top: 1px solid #e2e8f0;
}

.copyright-bar p {
    margin: 0;
    text-align: center;
    width: 100%;
}

@media (max-width: 600px) {
    .go-top {
        bottom: 18px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    footer .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}