* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-weight: 600;

}

/* --- Global Resets --- */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}


:root {
    --primary-color: #FFAC1C;
    --secondary-color: #C23571;
    --text-dark: #333;
}

nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white;
}

/* --- Maxnav --- */
.maxnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 5px 5%;
    color: white;
}
.box1, .contact, .email { display: flex; align-items: center; gap: 10px; }
.box1 h2, .box2 h2 { font-size: 14px; margin: 0; }
.divider { width: 1px; height: 20px; background: white; margin: 0 15px; }

.save-btn {
    background: #4CAF50;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}
.save-btn a { color: white; text-decoration: underline; font-weight: bold; }

/* --- Minnav --- */
.minnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    background: white;
}

.logo img { width: 180px; }

.wq {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.wq li {
    position: relative;
    padding: 15px 0;
}

.wq li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

/* --- MEGA MENU & CITIES FIXED (Desktop) --- */
.mega-dropdown { position: static !important; }
.minnav .list .wq li:last-child { position: relative !important; }

.mega-menu, .simple-menu {
    position: absolute;
    margin-top: -10px; 
    top: 100%; 
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 9999;
}

.mega-menu {
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
}

.simple-menu {
    left: 0;
    width: 250px !important;
    padding: 20px !important;
}

/* Hover Bridge */
.mega-menu::before, .simple-menu::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.wq li:hover > .mega-menu,
.wq li:hover > .simple-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0px;
}

/* Mega Menu Internal Layout (Desktop) */
.mega-container { display: flex; justify-content: space-between; gap: 30px; }
.mega-col { flex: 1; }
.col-title { font-size: 17px; margin-bottom: 15px; color: #000; position: relative; padding-bottom: 8px; font-weight: bold; }
.col-title::after { content: ""; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-color); }
.mega-links { list-style: none; padding: 0; }
.mega-links li { margin-bottom: 8px; padding: 0; }
.mega-links li a { font-weight: 400; color: #666 !important; font-size: 14px; display: block; }
.mega-links li a:hover { color: var(--primary-color) !important; transform: translateX(5px); }

/* Order Button (Desktop Only) */
.order-btn {
    background: #FFAC1C;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
}
.order-btn a { color: white; text-decoration: none; font-weight: bold; }

/* --- RESPONSIVE SETTINGS (MOBILE & TABLET) --- */
.menu-toggle { display: none; font-size: 25px; cursor: pointer; }

@media (max-width: 1024px) {
    /* 1. Navbar CTA (Order Now) Hata diya */
    .minnav .button {
        display: none !important;
    }

    /* 2. Menu Toggle Show */
    .menu-toggle { display: block; order: 2; }
    .minnav .logo { order: 1; }

    /* 3. List Styles */
    .minnav .list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .minnav .list.active { height: auto; padding: 20px 0; }
    .minnav .list .wq { 
        flex-direction: column; 
        padding-left: 20px; 
        gap: 0; 
    }
    .wq li { padding: 10px 0; }

    /* 4. Dropdown "Aik Dosray Kay Nichay" (Stacked) */
    .mega-menu, .simple-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none; /* JS ya Hover se khulega */
        box-shadow: none;
        padding: 15px !important;
        width: 100% !important;
        transform: none !important;
        margin-top: 0 !important;
    }
    
    /* Mobile Hover/Click support */
    .wq li:hover > .mega-menu, 
    .wq li:hover > .simple-menu { 
        display: block; 
    }

    /* Columns ko aik line mein hone ke bajaye vertical kar diya */
    .mega-container { 
        flex-direction: column; 
        gap: 20px; 
    }

    .mega-col {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .maxnav { display: none; }
}




/* Footer Styling */
.main-footer {
    background: #2A2A2A;
    color: white;
    padding: 50px 20px 20px;
    position: relative;
    /* Essential for overall structure */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Tablet aur mobile pe line break karne ke liye */
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-section {
    width: 20%;
    min-width: 200px;
    /* Sections ko ek had tak chota hone dega phir niche bhej dega */
    margin-bottom: 20px;
}

.footer-section .icons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-section .icons .fa-brands {
    font-size: 20px;
}

.footer-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: white;
}

/* --- Security Section (Modified for Responsiveness) --- */
.security {
    /* Absolute position sirf baray screens (desktop) ke liye media query mein rakhi hai */
    margin-bottom: 20px;
}

.security p {
    margin-bottom: 10px;
}

.security .img {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.security .img img {
    width: 50px;
}

.security2 {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.security2 img {
    width: 80px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #333;
    width: 100%;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* WhatsApp Icon */
.section11 {
    z-index: 999;
    position: fixed;
    left: 20px;
    bottom: 20px;
}

.section11 img {
    width: 55px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Desktop only behavior for Security (Jaise aapne set kiya tha) */
@media (min-width: 1025px) {
    .security {
        position: absolute;
        top: 180px;
        left: 73%;
    }
}

/* Tablet & Mobile Screens */
@media (max-width: 1024px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-section {
        width: 45%;
        /* Aik line mein do boxes */
        min-width: 250px;
    }

    .footer-section p {
        text-align: start;
    }

    .footer-section h2 {
        text-align: start;
    }

    .footer-section ul li {
        text-align: start;
    }

    .footer-section .icons {
        justify-content: center;
        margin-left: 0;
    }

    .security {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .security .img,
    .security2 {
        justify-content: center;
    }
}

/* Small Mobile Screens */
@media (max-width: 600px) {
    .footer-section {
        width: 100%;
        /* Aik line mein sirf aik box */
    }

    .section11 img {
        width: 45px;
        /* Mobile pe WhatsApp icon thora chota */
    }
}




.section10 {
    margin-bottom: 50px;
    background-color: #e7b256d3;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    text-align: center;
}

/* Desktop sizing */
.section10 .box1 img,
.section10 .box3 img {
    opacity: 0.60;
    width: 350px;
    /* Laptop size */
    height: auto;
    display: block;
}

.section10 .box2 {
    display: flex;
    flex-direction: column;
    /* Text upar, Button niche */
    align-items: center;
}

.section10 .box2 h2 {
    font-size: 25px;
    width: 350px;
    margin: 0;
    color: #000;
    font-weight: bold;
}

.section10 .box2 button {
    background-color: var(--primary-color);
    border-radius: 5px;
    border: none;
    padding: 12px 40px;
    margin-top: 25px;
    /* Button text ke niche gap */
    cursor: pointer;
}

.section10 .box2 button a {
    font-size: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* --- RESPONSIVE LOGIC --- */

@media (max-width: 850px) {
    .section10 {
        flex-direction: column;
        /* Sab kuch ek dusre ke upar niche aa jayega */
        gap: 20px;
    }

    .section10 .box1 img,
    .section10 .box3 img {
        width: 280px;
        /* Mobile pe images thori choti */
        margin: 0 auto;
    }

    /* Mobile pe images ki opacity thori kam takay text saaf dikhay */
    .section10 .box1 img {
        margin-bottom: -10px;
    }

    .section10 .box3 img {
        margin-top: -10px;
    }

    .section10 .box2 h2 {
        width: 100%;
        max-width: 300px;
        font-size: 22px;
    }
}





/* Parent container */
.faq-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
    font-weight: bold;
}

/* Flexbox for 2 Columns */
.faq-columns {
    display: flex;
    gap: 30px;
}

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    /* Light separator */
}

/* Question styling */
.faq-question {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    transition: 0.3s;
}

/* Plus icon using ::after */
.faq-question::after {
    content: "+";
    font-size: 22px;
    transition: transform 0.3s;
    color: #f7a400;
    /* Matching your theme color */
}

/* Active State Styles */
.faq-item.active .faq-question {
    background-color: #f9f9f9;
}

.faq-item.active .faq-question::after {
    content: "-";
    transform: rotate(180deg);
}

/* Answer styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    /* Smooth slide */
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    padding: 10px 15px 20px 15px;
}

/* --- RESPONSIVE LOGIC --- */
@media (max-width: 992px) {
    .faq-columns {
        flex-direction: column;
        /* Tablet/Mobile pe 1 column */
        gap: 0;
    }

    .faq-container h2 {
        font-size: 26px;
    }
}










.section11 {
    z-index: 999;
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section11 img {
    width: 55px;
}












.section10 {
    margin-bottom: 50px;
    align-items: center;
    justify-content: space-evenly;
    background-color: #e7b256d3;
    display: flex;
}

.section10 .box1 img {
    opacity: 0.50;
    padding: 20px 0px;
    width: 400px;
}

.section10 .box3 img {
    opacity: 0.50;
    padding: 20px 0px;
    width: 400px;
}

.section10 .box2 button a {
    font-size: 20px;
    text-decoration: none;
    color: black;
}

.section10 .box2 button {
    background-color: var(--primary-color);
    border-radius: 5px;
    border: none;
    padding: 10px 30px;
    margin-top: 30px;
}

.section10 .box2 h2 {
    text-align: center;
    width: 350px;
    font-size: 25px;
}











:root {
    --primary-color: #FFAC1C;
    --primary-light: #ffac1cb6;
    --text-color: #ffffff;
    --dark-text: #333333;
}

.hero-container {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px 5%;
    font-family: 'Poppins', sans-serif;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content */
.hero-title {
    font-size: clamp(28px, 4vw, 45px);
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Icons Row */
.hero-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
}

.icon-box {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn {
    display: inline-block;
    background: #333;
    /* Dark button for contrast */
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Right Side Placeholder */
.calculator-placeholder {
    background: white;
    border-radius: 20px;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* --- RESPONSIVE SETTINGS --- */

@media (max-width: 1024px) {

    /* Tablet Par 1 Column */
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-icons {
        justify-content: center;
    }

    .hero-form-side {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 40px 20px;
    }

    .icon-item {
        width: 100%;
        /* Mobile par icons stack ho jayenge */
        justify-content: center;
    }
}






/* --- RIGHT SIDE CALCULATOR (CALC-CARD) --- */
.calc-card {
    background: #fff;
    width: 100%;
    max-width: 500px;
    height: 70vh;
    /* Fixed height as requested */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    overflow-y: visible;
    margin-top: -2vw;
    position: relative;
}

.calc-card h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 800;
}

.features {
    display: flex;
    justify-content: space-around;
    font-size: 10px;
    color: #28a745;
    margin-bottom: 10px;
}

.calc-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow: visible !important;
}

.input-row input,
.input-row select,
.input-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    background: #fcfcfc;
}

/* Country selection */
.phone-input {
    display: flex;
    width: 100%;
    gap: 5px;
}

.country-code {
    width: 70% !important;
    font-weight: 600;
    background: #f1f1f1;
}

.deadline-box {
    width: 100%;
}

/* Description */
.desc-wrapper {
    width: 100%;
    position: relative;
}

.desc-wrapper textarea {
    height: 100px;
    resize: none;
}

.file-attach {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 11px;
    color: #FFAC1C;
    cursor: pointer;
    font-weight: bold;
}

/* Pages Section */
.pages-wrapper {
    width: 100%;
    background: #f9f9f9;
    padding: 0 15px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    border-radius: 6px;
}

.pages-wrapper label {
    font-size: 12px;
    font-weight: bold;
}

.counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-info span {
    font-weight: 900;
    font-size: 15px;
    color: #333;
}

.page-info small {
    font-size: 9px;
    color: #888;
}

.counter button {
    background: #FFAC1C;
    color: #fff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: #FFAC1C;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

/* Date & Time Container */
.deadline-time-container {
    display: flex;
    gap: 10px;
    width: 100%;
}

.date-picker-custom {
    flex: 1;
    cursor: pointer;
}

/* Custom Select Styling */
.custom-select-wrapper {
    position: relative;
    flex: 1;
    user-select: none;
}

.select-trigger {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
}

.label-fade {
    color: #aaa;
    margin-right: 10px;
}

.custom-options {
    position: absolute;
    top: 100%;
    /* Trigger ke bilkul neeche se start ho */
    right: 0;
    width: 150px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* Box shadow se ye alag (float karta hua) nazar ayega */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 9999 !important;
    /* Ye sab se upar rahega */
    max-height: 250px;
    overflow-y: auto;
}

.custom-options.show {
    display: block;
}

.option {
    padding: 10px 15px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    transition: 0.2s;
}

.option:hover {
    background: #f0f0f0;
}

.option.active {
    background: #0066ff;
    color: #fff;
}

/* Mobile Fix for Date/Time */
@media (max-width: 480px) {
    .deadline-time-container {
        flex-direction: column;
    }
}

/* --- RESPONSIVENESS (MOBILE & TABLET) --- */



@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        height: auto;
    }

    .hero-section .box1 {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-section .box1 h2 {
        width: 100%;
        font-size: 32px;
        text-align: start;
    }

    .hero-section .box1 p {
        text-align: start;
    }

    .bransreview .images {
        justify-content: center;
    }

    .calc-card {
        height: auto;
        /* Mobile pe height auto honi chahiye taake dabay na */
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
    }

    .country-code {
        width: 100% !important;
    }

    .hero-section .box1 h2 {
        font-size: 26px;
    }
}

@media (max-height: 700px) {
    .desc-wrapper textarea {
        height: 60px;
    }

    .calc-card {
        padding: 15px 20px;
        width: auto;
    }

    .hero-section .box1 h2 {
        margin-top: 5vw;
    }

}

@media (max-height: 400px) {
    .hero-section .box1 {
        margin-top: 17vw;
    }

}


.custom-flex-row {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
}

/* Dono boxes exactly equal width (50/50) */
.input-container,
.deadline-box-container {
    flex: 1;
    height: 48px;
    /* Height thori kam ki taake inline mein professional lagay */
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    /* Sab kuch vertically center karne ke liye */
    box-sizing: border-box;
    padding: 0 12px;
}

/* Subject Input Styling */
.input-container input {
    width: 100%;
    border: none;
    font-size: 15px;
    outline: none;
    background: transparent;
}

/* Deadline Box Updated (Aik line mein lane ke liye) */
.deadline-box-container {
    display: flex;
    flex-direction: row;
    /* Stack khatam, row shuru */
    justify-content: space-between;
    gap: 10px;
    /* Text aur Date ke beech gap */
    position: relative;
}

.deadline-tag {
    font-size: 10px;
    color: #918d8d;
    font-weight: bold;
    letter-spacing: 0.5px;
    white-space: nowrap;
    /* Text ko aik hi line mein rakhne ke liye */
}

.date-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    /* Date ko baqi bachi jagah dene ke liye */
}

.date-wrapper input[type="date"] {
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    color: #333;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    /* Date ko center mein dikhane ke liye */
}

.date-wrapper i {
    font-size: 16px;
    color: #666;
    margin-left: 5px;
}

/* Default icon hide kiya taake font-awesome icon chamke */
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}





@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    .main-layout {
        padding: 50px 5%;
        font-family: 'Poppins', sans-serif;
        max-width: 1300px;
        margin: 0 auto;
    }

    /* Sidebar logic: Isay Right par float kiya hai */
    .sidebar {
        float: right;
        width: 30%; /* Right side ka 30% area */
        margin-left: 30px;
        margin-bottom: 20px;
    }

    /* Content Area: No fixed width, takes full space */
    .content-area {
        display: block; /* Flex hata diya taake text wrap ho sakay */
    }

    .content-area h1, .content-area h2 {
        color: #FFAC1C;
        margin-bottom: 20px;
        font-size: 25px;
    }

    .content-area p {
        margin-bottom: 20px;
        line-height: 1.8;
        color: #000000;
        text-align: justify;
        font-weight: 500;
        font-size: 18px;
    }

    /* Boxes Design */
    .side-box {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 20px;
        border: 2px solid #FFAC1C; /* Theme Border */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    /* Sticky Logic: Ab ye box page ke top par chipke ga */
    .sticky-unit {
        position: sticky;
        top: 10px;
        z-index: 100;
    }

    .box-header { color: #d81b60; text-align: center; margin-bottom: 15px; font-size: 1.1rem; }
    
    .tool-list { list-style: none; padding: 0; }
    .tool-list li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; }

    .feature-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; }
    .orange { color: #FFAC1C; font-weight: bold; }
    .price del { color: #999; font-size: 11px; }

    .order-btn {
        width: 100%;
        background: #FFAC1C;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 5px;
    }

    /* Clearfix: Taake float layout neechay kharab na ho */
    .container::after {
        content: "";
        display: table;
        clear: both;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .sidebar {
            width: 100%;
            float: none;
            margin-left: 0;
        }
    }