/* Background setup */


.tashan-main-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between boxes */
}

/* White Border Box Style */
.content-border-box {
    border: 1px solid #ffffff; /* Same thin white border */
    padding: 20px 25px;
    background: transparent;
}

/* Orange Heading Style */
.orange-heading {
    color: #ff8c00; /* Bright Dark Orange */
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
}

/* Paragraph Content */
.white-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* List Items Styling */
.list-container {
    margin-top: 10px;
}

.list-item {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

/* Responsive for Mobile Devices */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .content-border-box {
        padding: 15px;
    }
    .orange-heading {
        font-size: 19px;
    }
    .white-text, .list-item {
        font-size: 18px;
    }
}