.btn-login {
    background: #00b386;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

/* Main Title */
h4.fw-bold {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

/* Calculator Section - Exact match to the screenshot */
.calc-card {
    background: transparent;
    border: none;
    padding: 0;
}

.input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
    color: #1f2937;
}

.input-row:last-of-type {
    border-bottom: none;
}

.input-label {
    color: #1f2937;
    font-weight: 500;
    font-size: 16px;
}

.bonus-label::after {
    content: " ▼";
    color: #6b7280;
    font-size: 14px;
    margin-left: 4px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    /* background: #e6fffa; */
    background: #1ea7e9;
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 180px;
}

.input-prefix {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-right: 8px;
}

.input-suffix {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-left: 8px;
}

.input-field {
    background: transparent;
    border: none;
    outline: none;
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 120px;
}

.input-field:focus {
    outline: none;
}

/* Results */
.result-section {
    margin-top: 32px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 16px;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 600;
}

.take-home-value {
    color: #1ea7e9;
    font-size: 20px;
    font-weight: 700;
}

/* Sidebar */
.ad-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.ad-card h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.ad-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.btn-elss {
    background: #4ADEDE;
    color: #000;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-size: 15px;
}

.popular-card .card-header {
    background: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.popular-card .list-group-item {
    padding: 12px 16px;
    font-size: 14px;
    color: #4b5563;
    border: none;
}

.popular-card .list-group-item:hover {
    background: #f9fafb;
}

/* Content Section */
.content-section h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 48px 0 16px;
    color: #1f2937;
}

.content-section p,
.content-section ul li {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

.content-section ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.example-box {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    font-size: 15px;
    color: #374151;
}

.example-box strong {
    color: #1f2937;
}

.benefits h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 48px 0 24px;
}

.benefits ul li {
    font-size: 15px;
    margin-bottom: 20px;
    color: #4b5563;
}

.benefits ul li strong {
    color: #1f2937;
    font-size: 16px;
}

.faq-section h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 48px 0 24px;
}

/* .faq-item {
        border-bottom: 1px solid #e5e7eb;
        padding: 16px 0;
        font-size: 15px;
        color: #374151;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-item span {
        color: #6b7280;
    }

    .faq-item:last-child {
        border-bottom: none;
    } */

.faq-wrapper {
    max-width: 100%;
    margin-top: 60px;
}

.faq-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    color: #0f172a;
}

.faq-arrow {
    font-size: 24px;
    font-weight: bolder;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    padding-right: 30px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 18px;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 24px;
    align-self: flex-start;
}

/* Card styling only (no sticky here) */
.sidebar-card {
    background: #f0ecff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.sidebar-card img {
    height: 48px;
    margin-bottom: 16px;
}

.sidebar-card h3 {
    font-size: 22px;
    margin: 16px 0;
}

.trusted {
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
}

.brands img {
    width: 45%;
    /* height: auto; */
    margin-top: 16px !important;
}

/* Article sections */
.article-section {
    margin: 48px 0;
}

.bullet-list {
    padding-left: 24px;
    margin: 16px 0;
}

.bullet-list li {
    margin-bottom: 12px;
}

.trusted {
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
}

.orange-btn {
    background: #1e2f97;
    ;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.orange-btn:hover {
    background: #1e2f97;
    color: #fff;
}

.orange-btn.wide {
    width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* General (for newer browsers) */
input[type=number] {
  appearance: none;
}
