.elementor-1224 .elementor-element.elementor-element-7b63115{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-9eb3fe0 *//* --- FINODA BASE STYLES --- */
.finoda-page-container {
    color: #192c27;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    overflow-x: hidden;
}

.finoda-page-container h1, 
.finoda-page-container h2, 
.finoda-page-container h3 {
    color: #114268;
}

.finoda-page-container h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.finoda-page-container h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #a38241;
}

/* --- HERO SECTION --- */
.finoda-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
}

/* --- CTA BUTTONS --- */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.primary-cta {
    background: #114268;
    color: #fff !important;
    border: 2px solid #114268;
}

.primary-cta:hover {
    background: #1b5379;
    border-color: #1b5379;
    transform: translateY(-2px);
}

.secondary-cta {
    background: #fff;
    color: #114268 !important;
    border: 2px solid #114268;
}

.secondary-cta:hover {
    background: #f0f4f7;
    transform: translateY(-2px);
}

/* --- TOC --- */
.finoda-toc {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 5px solid #a38241;
}

.finoda-toc h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.finoda-toc ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.finoda-toc a {
    color: #1b5379;
    text-decoration: none;
    font-size: 0.95rem;
}

.finoda-toc a:hover {
    color: #a38241;
    text-decoration: underline;
}

/* --- CONTENT SECTIONS --- */
.content-section {
    padding: 60px 0;
}

.grey-bg {
    background: #f4f7f9;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 5vw;
}

.gold-gradient {
    background: linear-gradient(135deg, #fff 0%, #fdf9f0 100%);
    border-top: 1px solid #f2e7c9;
    border-bottom: 1px solid #f2e7c9;
}

/* --- FLEX LAYOUTS --- */
.flex-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.flex-layout.reverse {
    flex-direction: row-reverse;
}

.flex-text { flex: 1.2; }
.flex-img { flex: 0.8; }

.flex-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

figcaption {
    font-style: italic;
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* --- STEP CARDS --- */
.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.step-card h3 {
    margin-top: 0;
    color: #a38241;
    font-size: 1.2rem;
}

/* --- TABLES --- */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

th {
    background: #114268;
    color: #fff;
    text-align: left;
    padding: 15px;
}

td {
    padding: 15px;
    border: 1px solid #eee;
}

tr:nth-child(even) { background: #fcfcfc; }

/* --- FAQ ACCORDION --- */
.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: #fff;
    border: none;
    font-weight: bold;
    color: #114268;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover { background: #f9f9f9; }

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: #a38241;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

/* --- VIDEO PLACEHOLDER --- */
.video-container {
    background: #192c27;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-placeholder {
    text-align: center;
    font-size: 1.5rem;
    padding: 20px;
}

/* --- FINAL CTA SECTION --- */
.final-cta {
    text-align: center;
    padding: 80px 20px;
    background: #114268;
    color: #fff !important;
    border-radius: 20px;
    margin-top: 40px;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 15px;
}

.final-cta h2::after { left: 50%; transform: translateX(-50%); background: #a38241; }

.final-cta p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px;}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.social-links a {
    color: #a38241;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}

.office-address {
    margin-top: 40px;
    font-style: normal;
    opacity: 0.8;
}

/* --- LINKS --- */
.internal-link, .external-link {
    color: #1b5379;
    text-decoration: none;
    font-weight: 600;
}

.internal-link:hover, .external-link:hover {
    color: #a38241;
    text-decoration: underline;
}

/* --- LISTS --- */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a38241;
    font-weight: bold;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .finoda-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 { font-size: 2rem; }
    
    .flex-layout, .flex-layout.reverse {
        flex-direction: column;
    }
    
    .grey-bg { padding: 40px 20px; }
    
    .finoda-toc ul { grid-template-columns: 1fr; }
    
    .cta-group { flex-direction: column; }
}/* End custom CSS */