.section-6 {
    width: 100%;
    height: 1400px;
    font-family: Arial, sans-serif;
    background-color: rgba(24, 65, 87, 1); 
    background-image: url('../image/bg_waves_4.svg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 40px;
}

.section-6-big-container {
    width: 1140px;
    height: 1400px;
    margin: auto;
    display: flex;
    flex-direction: column; 
    justify-content:space-between;
    align-items: center;
}

.section-6-container {
    width: 660px;
    height: 731px;
    border-radius: 8px;
}
.section-6-button-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 50px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.section-6-example_button {
    height: 40px;
    width: 100px;
    color: white;
    border: none;
    border-radius: 40px;
    background-color: rgb(65, 99, 118);
    text-align: center;
    line-height: 40px;
    font-size: 14px;
}

.section-6-header {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-6-sub-header {
    font-size: 20px;
    color: white;
    font-weight: 500;
    margin-bottom: 40px;
}

.section-6-tabs-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 28px;
}

.section-6-tabs {
    list-style: none;
    display: inline-flex; /* shrink to fit contents */
    justify-content: center;
    padding: 0;
    background-color: #ffffff;
    border-radius: 8px;
    border: none;
}

.section-6-tabs li {
    flex: none; /* no auto expansion */
}


.section-6-tabs a {
    display: block;
    text-align: center;
    padding: 18px 20px;
    text-decoration: none;
    color: #333; 
    font-weight: bold;
    background-color: white; 
    border-right: 1px solid #ddd; 
}

.section-6-tabs a:hover {
    text-decoration: underline;
}

.section-6-tabs a:active {
    background-color: #E87E24; 
    color: white;
}

.section-6-tabs .tab.active {
    background-color: #f47b21;
    color: white;
}

.section-6-code-block {
    text-align: left;
    background-color: rgb(23, 36, 43);
    border-radius: 5px;
    color: #7ec699;
    height: 670px;
    width: 660px;
    font-size: 12px;
    line-height: 17px;
    overflow-y: auto;
}

.pre-text {
    color: #a0d468;
}

.section-6-feature-container {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.section-6-feature {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    width: 1140px;
    margin: auto;
}

.section-6-feature-card {
    color: #fff;
    height: 102px;
    width: 330px;
    background-color: rgba(255, 255, 255, .1);
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}

.section-6-feature-card img {
    height: 30px;
    width: 30px;
    margin-right: 7px;
}

.section-6-feature-card b {
    font-size: 20px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
}

.section-6-feature-card p {
    font-size: 14px;
    line-height: 20px;
}