/* ? Responsive & Standard Box Styling */
.store-bottom-text {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin: 40px auto;
    color: #444;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    box-sizing: border-box;
    box-shadow: 0 6px 12px #00000029;
    word-wrap: break-word;
    overflow: hidden;
    max-width: 1300px; /* standard desktop width */
    width: 95%; /* keep small margins on both sides */
    clear: both;
}

/* ? Responsive Adjustments */
@media (max-width: 1240px) {
    .store-bottom-text {
        max-width: 95%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .store-bottom-text {
        width: 95%;
        padding: 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .store-bottom-text {
        width: 100%;
        border-radius: 6px;
        margin: 25px 0;
        padding: 15px;
        font-size: 12px;
    }
}

/* ? H3 heading inside the box */
.store-custom-text-title {
    font-size: 20px;
    font-weight: 700;
    color: #5DADE2; /* light blue */
    margin-bottom: 15px;
    text-align: center;
}

/* ? H2 styling */
.store-bottom-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: left;
    color: #FF6F61; /* light red tone */
}

/* ? H3 styling */
.store-bottom-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
	color: #5DADE2; /* light blue */
}

/* ✅ Tighten spacing between heading (h4) and paragraph (p) */
.store-bottom-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.1; /* compact question text */
    margin-bottom: 0; /* remove bottom gap under heading */
    text-align: left;
}

/* ✅ Pull paragraph closer to heading */
.store-bottom-text h4 + p {
    margin-top: -6px; /* 🔧 brings paragraph upward, removes big gap */
}

/* ✅ Paragraph styling */
.store-bottom-text p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.1; /* compact lines */
    margin-bottom: 8px; /* small space before next question */
    text-align: left;
}

.store-bottom-text h4 {
    line-height: 0; /* perfectly tight heading */
    margin-bottom: -3;
}

.store-bottom-text p {
    line-height: 1.4; /* compact and elegant paragraph */
    margin-top: 1;
}