.vf-main-container {
    margin-top: 10px;
    margin-bottom: 10px;
}

.vf-title {
    text-align: center;
    font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif !important;
    font-size: 40px !important;
    font-weight: 300 !important;
    letter-spacing: 5px !important;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 30px !important;
    line-height: 1.4 !important;
}

/* Search container */
.vf-search-container {
    position: relative;
    width: 100%;
    margin: 0 auto 30px;
}

/* Search icon on the RIGHT */
.vf-search-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    left: auto;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    opacity: 0.5;
}

input.vf-text-input {
    margin: 0 auto;
    display: block;
    width: 100% !important;
    padding: 14px 48px 14px 20px !important;
    background-color: #f3f3f3 !important;
    border-radius: 6px !important;
    outline: none;
    border: none !important;
    box-sizing: border-box;
    font-size: 15px;
    color: #555;
}

input.vf-text-input:focus {
    border-color: transparent;
    box-shadow: none;
    background-color: #ebebeb !important;
}

input.vf-text-input::placeholder {
    color: #aaa;
}

/* FAQ list */
ul.vfqanda {
    color: #000;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

ul.vfqanda li {
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    margin: 0;
}

ul.vfqanda li:first-child {
    border-top: 1px solid #e0e0e0;
}

.vfqanda .vfquestion {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding: 18px 4px;
    position: relative;
    color: #1a1a1a;
    font-size: 20px;
    border-radius: 0;
    background: transparent;
    transition: none;
}

.vfqanda .vfquestion:hover {
    background-color: transparent;
}

.vfqanda .vfquestion.active {
    color: #1a1a1a;
    border-radius: 0;
}

.vfqanda .vfanswer {
    padding: 0 4px 18px 4px;
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-top: 0;
}

/* Gold circle toggle icon */
.vfqanda .vf-toggle-icon {
    min-width: 34px;
    width: 34px;
    height: 34px;
    background-color: #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 0.85em;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

/* Rotate chevron down when expanded */
.vfqanda .vfquestion.active .vf-toggle-icon {
    transform: rotate(90deg);
}

.vfqanda a {
    color: #c9a96e;
}

.vfqanda a:hover {
    color: #a8813d;
}

@media screen and (max-width: 715px) {
    ul.vfqanda {
        margin: 0 auto;
    }

    input.vf-text-input {
        width: 100% !important;
    }
}
