
<style>

/* ==========================================================
   AMENITIES + PRINCIPAL SECTION
   ========================================================== */

.vss-amenities-principal {
    position: relative;
    padding: 75px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.vss-amenities-principal:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(11,71,117,0.06);
    left: -150px;
    top: 80px;
}

.vss-amenities-principal:after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid rgba(245,130,24,0.08);
    right: -110px;
    bottom: 40px;
}

.vss-amenities-principal .container {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   COMMON SECTION HEADING
   ========================================================== */

.vss-ap-heading {
    margin-bottom: 35px;
}

.vss-ap-heading .vss-ap-label {
    display: block;
    margin-bottom: 7px;
    color: #f58218;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vss-ap-heading h2 {
    margin: 0;
    color: #0b4775;
    font-size: 30px;
    font-weight: 800;
}

.vss-ap-heading-line {
    width: 60px;
    height: 4px;
    margin-top: 14px;
    background: #f58218;
    border-radius: 10px;
}


/* ==========================================================
   AMENITIES INTRO
   ========================================================== */

.vss-amenities-intro {
    margin-bottom: 25px;
    color: #617386;
    font-size: 15px;
    line-height: 1.75;
}


/* ==========================================================
   AMENITIES LIST
   ========================================================== */

.vss-amenities-list {
    margin-top: 20px;
}

.vss-amenity-item {
    display: table;
    width: 100%;
    min-height: 76px;
    margin-bottom: 14px;
    padding: 13px 15px;
    background: #ffffff;
    border: 1px solid #e3eaf1;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(7,31,53,0.05);
    transition: all .3s ease;
}

.vss-amenity-item:hover {
    transform: translateY(-4px);
    border-color: rgba(245,130,24,0.35);
    box-shadow: 0 12px 27px rgba(7,31,53,0.10);
}

.vss-amenity-icon {
    display: table-cell;
    width: 50px;
    vertical-align: middle;
}

.vss-amenity-icon span {
    display: block;
    width: 43px;
    height: 43px;
    line-height: 43px;
    border-radius: 50%;
    background: #eaf3f9;
    color: #f58218;
    text-align: center;
    font-size: 18px;
    transition: all .3s ease;
}

.vss-amenity-item:hover .vss-amenity-icon span {
    background: #f58218;
    color: #ffffff;
}

.vss-amenity-content {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
}

.vss-amenity-content h4 {
    margin: 0 0 4px;
    color: #0b4775;
    font-size: 15px;
    font-weight: 800;
}

.vss-amenity-content p {
    margin: 0;
    color: #718296;
    font-size: 12px;
    line-height: 1.45;
}


/* ==========================================================
   PRINCIPAL'S DESK CARD
   ========================================================== */

.vss-principal-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e8ef;
    border-radius: 15px;
    box-shadow: 0 10px 32px rgba(7,31,53,0.09);
    transition: all .3s ease;
}

.vss-principal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(7,31,53,0.13);
}


/* Orange top border */
.vss-principal-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #f58218;
}


/* Principal image */
.vss-principal-image {
    padding: 25px 25px 0;
    text-align: center;
    background: linear-gradient(180deg, #eaf3f9 0%, #f7f9fc 100%);
}

.vss-principal-image img {
    display: inline-block;
    width: 100%;
    max-width: 390px;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 7px 22px rgba(7,31,53,0.13);
}


/* Principal information */
.vss-principal-body {
    padding: 25px 28px 28px;
    text-align: center;
}

.vss-principal-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #f58218;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.vss-principal-body h2 {
    margin: 0 0 10px;
    color: #0b4775;
    font-size: 25px;
    font-weight: 800;
}

.vss-principal-body p {
    margin: 0 auto 20px;
    max-width: 450px;
    color: #718296;
    font-size: 13px;
    line-height: 1.65;
}


/* Read more button */
.vss-principal-button {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #0b4775;
    border-radius: 30px;
    background: #0b4775;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none !important;
    transition: all .3s ease;
}

.vss-principal-button:hover,
.vss-principal-button:focus {
    background: #f58218;
    border-color: #f58218;
    color: #ffffff !important;
    text-decoration: none;
}

.vss-principal-button i {
    margin-left: 6px;
}


/* ==========================================================
   RESPONSIVE - TABLET
   ========================================================== */

@media (max-width: 991px) {

    .vss-amenities-principal {
        padding: 60px 0;
    }

    .vss-ap-heading h2 {
        font-size: 27px;
    }

    .vss-principal-card {
        margin-top: 10px;
    }

    .vss-principal-image img {
        height: 270px;
    }
}


/* ==========================================================
   RESPONSIVE - MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .vss-amenities-principal {
        padding: 48px 0 55px;
    }

    .vss-ap-heading {
        margin-bottom: 25px;
    }

    .vss-ap-heading h2 {
        font-size: 24px;
    }

    .vss-amenities-intro {
        font-size: 14px;
    }

    .vss-amenity-item {
        min-height: 70px;
    }

    .vss-principal-card {
        margin-top: 25px;
    }

    .vss-principal-image {
        padding: 20px 20px 0;
    }

    .vss-principal-image img {
        height: auto;
        max-height: 350px;
    }

    .vss-principal-body {
        padding: 22px 20px 25px;
    }

    .vss-principal-body h2 {
        font-size: 23px;
    }
}


/* ==========================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .vss-ap-heading h2 {
        font-size: 22px;
    }

    .vss-amenity-content h4 {
        font-size: 14px;
    }

    .vss-amenity-content p {
        font-size: 11px;
    }

    .vss-principal-body h2 {
        font-size: 21px;
    }

}

</style>