.elementor-1556 .elementor-element.elementor-element-6f6256f:not(.elementor-motion-effects-element-type-background), .elementor-1556 .elementor-element.elementor-element-6f6256f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-e823500 );}.elementor-1556 .elementor-element.elementor-element-6f6256f{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-1556 .elementor-element.elementor-element-6f6256f > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS *//* CSS Variables */
:root {
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --gold: #c9a961;
    --gold-muted: #b8954d;
    --gold-light: #d4b876;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a8a8a8;
    --border-color: rgba(201, 169, 97, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-black);
    color: var(--text-primary);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 40px;
}

.header-section h1 {
    font-size: 2.5em;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.header-subtitle {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.last-updated {
    display: inline-block;
    background: rgba(201, 169, 97, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--gold-light);
    font-size: 0.9em;
    margin-top: 15px;
}

/* Highlighted Badge */
.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.08));
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--gold);
    font-weight: 600;
    margin: 0 4px;
}

.highlight-badge.large {
    padding: 8px 16px;
    font-size: 1.15em;
    border: 2px solid var(--gold);
}
/* Content Sections */
.content-section {
    background: var(--secondary-black);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.content-section h2 {
    color: var(--gold);
    font-size: 2em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.content-section h3 {
    color: var(--gold-light);
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.content-section ul, .content-section ol {
    color: var(--text-secondary);
    margin: 20px 0 20px 30px;
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Comparison Tables */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--primary-black);
    overflow: hidden;
    border-radius: 8px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--gold-muted), var(--gold));
}

.comparison-table thead th {
    color: var(--primary-black);
    padding: 15px;
    text-align: right;
    font-weight: 700;
    font-size: 1.05em;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(201, 169, 97, 0.05);
}

.comparison-table td {
    padding: 15px;
    color: var(--text-secondary);
    text-align: right;
}

.comparison-table td:first-child {
    color: var(--gold-light);
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-right: 4px solid var(--gold);
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
}

.highlight-box h3 {
    color: var(--gold);
    margin-top: 0;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* FAQ Accordion */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: var(--secondary-black);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 20px;
    text-align: right;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(201, 169, 97, 0.05);
    color: var(--gold-light);
}

.faq-question .icon {
    font-size: 1.2em;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-secondary);
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 20px 20px 20px;
}

/* CTA Buttons */
.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-muted), var(--gold));
    color: var(--primary-black);
    padding: 18px 40px;
    margin: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.cta-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--primary-black);
}

/* Source Links */
.source-link {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px dotted var(--gold-light);
    transition: all 0.3s ease;
}

.source-link:hover {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-section h1 {
        font-size: 1.8em;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .comparison-table {
        font-size: 0.9em;
    }
    
    .comparison-table thead th,
    .comparison-table td {
        padding: 10px;
    }
    
    .highlight-badge {
        font-size: 0.9em;
        padding: 3px 10px;
    }
    
    .highlight-badge.large {
        font-size: 1em;
        padding: 6px 14px;
    }
}/* End custom CSS */