@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

:root {
    --header-purple-main: #6a1b9a;
    --header-purple-dark: #4a0072;
    --header-purple-light-bg: #f3e5f5;
    --header-red-logo: #f04362;
    --header-text-primary: #111827;
    --header-text-secondary: #4b5563;
    --header-white: #ffffff;
    --header-grey-light: #f9fafb;
    --header-grey-border: #e5e7eb;
    --header-dotted-border-color: #d1d5db;
    --header-glass-bg: rgba(255, 255, 255, 0.4);
    --header-transition-speed: 0.35s;
    --header-transition-easing: cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    padding-top: 80px;
}

.header {
    opacity: 1 !important;
    visibility: visible !important;
    font-family: 'Inter', sans-serif;
    color: var(--header-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--header-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    border-bottom: 1px solid var(--header-grey-border);
    top: 0;
    z-index: 1002;
    width: 100%;
    min-height: 60px;
}

.header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.header a, .header button {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
}

.header ul { list-style: none; }
.header button { background: none; border: none; }

.header .navbar {
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
    padding: 0;
}

.header .logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: auto;
}

.header .logo img { width: 34px; height: 34px; }
.header .logo-text { color: var(--header-red-logo); }

.header .nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.header .nav-item, .header .dropdown-item { position: relative; }

.header .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--header-text-secondary);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all var(--header-transition-speed) ease;
    white-space: nowrap;
}

.header .nav-link:hover,
.header .dropdown-item.is-open .dropdown-toggle {
    color: var(--header-purple-main);
    background-color: var(--header-purple-light-bg);
}

.header .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header .dropdown-chevron {
    transition: transform var(--header-transition-speed) var(--header-transition-easing);
}

.header .dropdown-item.is-open .dropdown-chevron {
    transform: rotate(180deg);
}

.header .nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .cta-button {
    background-color: var(--header-white);
    color: #5D2A7B;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--header-purple-main);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--header-transition-speed) var(--header-transition-easing);
}

.header .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(106, 27, 154, 0.5);
}

.header .desktop-only { display: inline-flex; }

.header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.header .hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: #374151;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    border-radius: 1px;
}

.header .hamburger-line:nth-child(2) { margin: 5px 0; }

ma-header:empty {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--header-glass-bg);
    border-bottom: 1px solid var(--header-grey-border);
    z-index: 1001;
}

@media screen and (max-width: 767px) {
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .header .container { padding: 0 16px; }
    .header .navbar { height: 70px; }
    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }
    .header .logo { font-size: 20px; }
    .header .logo img { width: 28px; height: 28px; }

    ma-header:empty { height: 70px; }
    body { padding-top: 70px; }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .header .container { padding: 0 20px; }

    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }
}

@media screen and (max-width: 388px) {
    .header .container { padding: 0 12px; }

    .header .mobile-menu-list li a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .header .mobile-group-title {
        font-size: 14px;
        padding: 12px 0 8px;
    }

    .header .mobile-cta-section {
        padding: 16px 12px;
    }

    .header .mobile-cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

:root {
    --primary-purple: #611F69;
    --gradient-start: #8253C2;
    --gradient-end: #F45346;
    --light-purple-bg: #F5F0FD;
    --dark-purple-bg: #833AAF;
    --text-dark: #333;
    --text-medium: #555;
}

body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #4A4A4A;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.commu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.commu-section {
    padding: 6rem 0;
}

.commu-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.commu-heading-primary {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commu-heading-secondary {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commu-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-medium);
    max-width: 550px;
}

.commu-highlight-gradient {
    background: linear-gradient(87deg, var(--gradient-start) 18.3%, var(--gradient-end) 80.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.commu-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.commu-btn-primary {
    background: var(--primary-purple);
    color: #fff;
}
.commu-btn-primary:hover {
    background: #4d1954;
    transform: translateY(-2px);
}

.commu-btn-secondary {
    background-color: #fff;
    color: var(--primary-purple);
    border-color: #ddd;
}
.commu-btn-secondary:hover {
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.commu-btn-dark {
    background: var(--primary-purple);
    color: #fff;
}
.commu-btn-dark:hover {
    background: #4d1954;
    transform: translateY(-2px);
}

.commu-text-center {
    text-align: center;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.commu-animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.commu-animate-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.commu-hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.commu-hero-box {
    max-width: 1350px;
    margin: 0 auto;
    background: var(--light-purple-bg);
    border-radius: 24px;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.commu-hero-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.commu-hero-content {
    flex-basis: 50%;
    z-index: 10;
}

.commu-hero-assessed {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.commu-assessed-faces {
    display: flex;
}

.commu-assessed-faces img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -15px;
}

.commu-hero-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.commu-hero-bg-circles .circle {
    position: absolute;
    border-radius: 50%;
    background-color: #8253C2;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.commu-hero-bg-circles .circle-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.74);
}
.commu-hero-bg-circles .circle-2 {
    width: 450px;
    height: 450px;
    opacity: 0.1;
}

.commu-assessed-faces img:first-child {
    margin-left: 0;
}

.commu-hero-assessed p {
    margin: 0;
    font-weight: 500;
}

.commu-hero-image-area {
    flex-basis: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commu-hero-main-img {
    width: 650px;
    position: relative;
    top: 7rem;
    z-index: 5;
}


.commu-best-bg-section{
    background: #F8F6FE;
}

.best-skills-grid .commu-heading-secondary span{
 position:relative;
 top:60px;
}

.commu-best-bg-section .best-skills-grid p{
 position:relative;
 top:-14px;
}

.commu-best-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 16px 16px;
    padding: 2rem;
    border-radius: 24px;
}
.commu-best-image-wrapper {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.commu-best-main-img {
    border-radius: 16px;
}
.commu-person-icon {
    position: absolute;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    animation: floatAnimation 5s ease-in-out infinite;
}
.commu-person-icon-1 { top: -30px; left: 20%; animation-delay: 0.5s; }
.commu-person-icon-2 { top: 30%; left: -40px; animation-delay: 1s; }
.commu-person-icon-3 { top: 50%; right: -30px; animation-delay: 1.5s; }
.commu-person-icon-4 { bottom: 10%; right: -40px; animation-delay: 0.2s; }
.commu-person-icon-5 { bottom: -20px; left: 40%; animation-delay: 0.8s; }

.best-skills-grid {
    align-items: start; }
.best-skills-grid .commu-heading-secondary span{
 top:40px;
}
.best-skills-grid .commu-best-image-area {
    grid-column: 1;
    grid-row: 1 / 3; }
.best-skills-grid .commu-heading-secondary {
    grid-column: 2;
    grid-row: 1;
}
.best-skills-grid .commu-paragraph {
    grid-column: 2;
    grid-row: 2;
}


.commu-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.commu-list-item {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.commu-what-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.commu-what-main-img {
    border-radius: 20px;
    position: relative;
    z-index: 5;
}

.commu-what-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.commu-what-bg-circles .circles {
    position: absolute;
    border-radius: 50%;
    background-color: #8253C2;
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.commu-what-bg-circles .circles-1 {
    width: 400px;
    height: 400px;
    opacity: 0.1;
}
.commu-what-bg-circles .circles-2 {
    width: 280px;
    height: 280px;
    opacity: 1;
    background-color: #fff;
}

.commu-banner {
    background: #EFE9F0;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.commu-banner p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #5B0D5C;
}
.commu-banner-buttons {
    display: flex;
    gap: 1rem;
}


.commu-skills-section{
    background: #F7F2FF;
}

.commu-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.commu-type-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 6px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.commu-type-card svg{
    margin-bottom: 1.5rem;
}

.commu-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.commu-type-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-purple);
}
.commu-type-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}


.commu-dark-purple-bg {
    background: var(--dark-purple-bg);
}
.commu-why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}
.commu-why-header .commu-heading-secondary {
    flex-basis: 60%;
    margin: 0;
}
.commu-why-header .commu-subheading-white {
    flex-basis: 40%;
    margin: 0;
    max-width: none;
}
.commu-text-white {
    color: #fff;
}
.commu-subheading-white {
    color: #E9D5FF;
    font-size: 1.125rem;
    line-height: 1.7;
}
.commu-stats-box {
    background-color: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.commu-stat-item {
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}
.commu-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #e5e7eb;
}
.commu-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #66A349;
}
.commu-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-top: 0.5rem;
    display: block;
}

.commu-cta-box {
    max-width: 1350px;
    margin: 0 auto;
    background: linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}
.commu-cta-heading {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}
.commu-cta-subheading {
    color: var(--text-medium);
    font-size: 1.2rem;
    margin: 0 auto 2rem auto;
}

.commu-advanced-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    text-align: left;
}

.commu-advanced-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.commu-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
@media (max-width: 992px) {
    .commu-grid-2col {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center; }

    .commu-paragraph {
        margin-left: auto;
        margin-right: auto;
    }

    .commu-hero-flex-container {
        flex-direction: column;
        text-align: center;
    }
    
    .commu-hero-content {
        order: 1;
    }
    .commu-hero-image-area {
        order: 2;
        margin-top: 2rem;
    }
    
    .commu-hero-assessed {
        justify-content: center; flex-direction: column; }

    .best-skills-grid {
        align-items: center; }
    .best-skills-grid .commu-best-image-area,
    .best-skills-grid .commu-heading-secondary,
    .best-skills-grid .commu-paragraph {
        grid-column: 1;
        grid-row: auto;
    }
    .best-skills-grid .commu-heading-secondary {
        order: 1;
    }
    .best-skills-grid .commu-best-image-area {
        order: 2;
    }
    .best-skills-grid .commu-paragraph {
        order: 3;
        margin-top: 0;
    }

    .commu-what-bg-circles{
        display: none;
    }
    
    .what-section-grid .commu-content-block {
        order: 1;
    }
    .what-section-grid .commu-what-image-wrapper {
        order: 2;
    }
    .commu-list {
        text-align: left; max-width: 400px; margin-left: auto;
        margin-right: auto;
    }

    .commu-types-grid,
    .commu-trust-grid { grid-template-columns: repeat(2, 1fr);
    }

    .commu-advanced-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .commu-advanced-grid .commu-list {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }


    .commu-stats-box {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .commu-stat-item:not(:last-child)::after {
        display: none; }
     .commu-stat-item:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
    }

    .commu-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .commu-why-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .commu-section { padding: 4rem 0; }
    .commu-container { padding: 0 1.5rem; }

    .commu-heading-primary { font-size: 2.5rem; }
    .commu-heading-secondary { font-size: 2rem; }
    .commu-cta-heading { font-size: 2rem; }
}

@media (max-width: 480px) {
    .commu-heading-primary { font-size: 2rem; }

    .commu-hero-box {
        padding: 2rem 1.5rem;
    }

    .commu-hero-image-area {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .commu-hero-bg-circles {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .commu-hero-bg-circles .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .commu-hero-bg-circles .circle-1 {
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.74);
    }

    .commu-hero-bg-circles .circle-2 {
        width: 280px;
        height: 280px;
        opacity: 0.1;
        background-color: #8253C2;
    }

    .commu-hero-main-img {
        width: 380px !important;
        height: auto;
        position: relative;
        top: 2rem;
        z-index: 5;
        display: block;
    }

    .commu-types-grid,
    .commu-trust-grid { grid-template-columns: 1fr;
        justify-items: center;
    }
    .commu-type-card {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .commu-banner p { font-size: 1.1rem; }
    .commu-banner-buttons { 
        flex-direction: column; 
        width: 100%;
    }
    .commu-btn { 
        width: 100%; 
        box-sizing: border-box; 
        text-align: center;
    }

    .commu-person-icon {
        width: 45px;
        height: 45px;
    }
    .commu-person-icon-2 { left: -25px; }
    .commu-person-icon-3 { right: -25px; }
    .commu-person-icon-4 { right: -25px; }
}
.commu-hero-section .commu-container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.commu-faq {
    background-color: #fafafa;
    padding: 80px 0;
}

.commu-faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.commu-faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}

.commu-faq-item.faq-visible {
    opacity: 1;
    transform: translateY(0);
}

.commu-faq-item[open] {
    box-shadow: 0 4px 20px rgba(106, 27, 154, 0.1);
    border-color: #6A1B9A;
}

.commu-faq-item summary {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.commu-faq-item[open] summary {
    color: #6A1B9A;
}

.commu-faq-item summary::-webkit-details-marker {
    display: none;
}

.commu-faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: #f0f0f0;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.commu-faq-icon::before,
.commu-faq-icon::after {
    content: '';
    position: absolute;
    background: #555;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
}

.commu-faq-icon::before {
    width: 12px;
    height: 2px;
}

.commu-faq-icon::after {
    width: 2px;
    height: 12px;
}

.commu-faq-item[open] .commu-faq-icon {
    transform: rotate(45deg);
    background: #6A1B9A;
}

.commu-faq-item[open] .commu-faq-icon::before,
.commu-faq-item[open] .commu-faq-icon::after {
    background: #fff;
}

.commu-faq-item p {
    padding: 0 20px 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .commu-faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .commu-faq {
        padding: 50px 0;
    }

    .commu-faq-item summary {
        padding: 16px;
        font-size: 14px;
    }

    .commu-faq-item p {
        padding: 0 16px 16px;
        font-size: 13px;
    }
}