.section-smaller-caption, .section-smaller-caption-2{
    font-size: 13px;
}
.section-simple-link {
	color: #ff0000;
	text-decoration: underline;
    cursor: pointer;
}
/*For Custom Three-Col Layout*/
.section-main{
display: flex;
flex-wrap: wrap;
}
.section-col{
flex: 33.3%;
max-width: 33.3%;
padding: 0 60px;
}
/* CUSTOM ACCORDION */
.section-accordion {
    margin: 2rem auto;
    font-family: sans-serif;
}
.section-accordion-item {
    border-bottom: 1px solid #ddd;
}
/* Hide the default checkbox */
.section-accordion-toggle {
    display: none;
}
.section-accordion-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.icon {
    position: relative;
    width: 16px;
    height: 16px;
}
.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background-color: #333;
}
/* Vertical bar (Plus) */
.icon::before {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}
/* Horizontal bar (Minus/Plus) */
.icon::after {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}
.section-accordion-toggle:checked + .section-accordion-header .icon::before {
    transform: rotate(90deg); /* Makes it disappear in combination with the next line */
    background-color: transparent; 
}
/* Smooth expansion of content */
.section-accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.section-accordion-content p {
    padding: 10px 20px 20px;
    margin: 0;
}
.section-accordion-toggle:checked ~ .section-accordion-content {
    max-height: none; /* Adjust if your content is longer */
}
.section-accordion-toggle:checked ~ .section-accordion-header {
    font-weight: 700;
}
.section-text-link {
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
}
/* CUSTOM ORDERED LIST */
.custom-ol {
    padding-left: 20px;
}
.custom-ol .list-item::before {
    content: "\2022 ";
    font-weight: bold;
    color: #000;
    display: inline-block;
    width: 1em;
}
.list-item {
    display: list-item;
    /* Hide the default marker (bullet/number) */
    list-style-type: none;
}
.section-list-container{
    display: flex;
}
.list-content{
    padding: 0 20px 20px 0;
}
.section-text-caption{
    color: #7d7d7d;
}
/* CUSTOM TWO-COL IMAGE LEFT, TEXT RIGHT */
.special-two-col-container {
    display: flex;
    flex-direction: row;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.special-img-wrapper{
    flex: 1.1;
    position: relative;
    overflow: hidden;
}
.special-img-wrapper img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.special-text-content{
    flex: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.special-title{
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 16px;
}
.special-desc{
    line-height: 1.6;
    margin-bottom: 28px;
}
/* STEPS LIST */
.special-steps{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.special-steps-card{
    overflow: hidden;
    width: calc(33.333% - 16px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}
.special-steps-image{
    width: 100%;
    height: auto;
    display: block;
}
.special-steps-header{
    margin: 0;
    padding: 0 20px;
    text-align: left;
    font-size: 1.3rem;
}
.special-steps-desc{
    padding: 24px;
}
/* COMPARISON TABLE */
.comparison-container{
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.comparison-header{
    position: sticky;
    top: 110px;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.header-cell{
    padding: 16px;
    font-weight: bold;
    text-align: center;
    color: #e00;
    font-size: 25px;
    border-bottom: 1px solid var(--color-border-tertiary);
    background-color: white;
}
.comparison-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.comparison-cell{
    padding: 16px;
    text-align: center;
}

/* CUSTOM SCHEDULE TABLE */
.custom-schedule-table{
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.custom-schedule-header{
    padding: 14px 20px;
    text-align: center;
    font-size: 20px;
    background-color: #DDDDDD;
    font-weight: 700;
}
.custom-schedule-row{
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    text-align: center;
}
.custom-schedule-row:nth-child(n+2){
    border-left: 1px solid #f3f4f6;
}

/* NEW */
.section-wrap{
display: inline-block;
vertical-align: super;
font-size: 75%;
border: 2px solid #ff0000;
background-color: #ff0000;
border-radius: 20px;
}
.section-wrap-nav-font, .section-wrap-body-font{
margin: 0 auto; 
text-align: center; 
padding: 0 5px; 
color: white;
font-size: 11px;
}
.section-wrap-body-font{
font-size: 13px;
}
@media (max-width: 768px){
    .section-heading{
    margin: 0 30px;
    }
    .section-smaller-caption, .section-smaller-caption-2{
    font-size: 10px;
    }
    .section-col{
    flex: 100%;
    max-width: 100%;
    padding: 20px 40px;
    }
    .special-two-col-container{
        flex-direction: column;
        max-width: 480px;
    }
    .special-img-wrapper{
        min-height: 250px;
        flex: none;
    }
    .special-text-content{
        padding: 32px 24px;
    }
    .special-steps-card{
        width: 100%;
    }
    .comparison-header{
        top: 11vh;
    }
    .custom-schedule-table{
        padding: 20px;
    }
}
@media screen and (min-width: 813px) {
    [data-pc-aspect-ratio="2:1"]:before {
        padding-top: 35%;
    }
}