:root {
    --bg-main: #ffffff;
    --bg-card: #f5f8fc;
    --brand-blue: #3a5ea8;
    --brand-red: #e33f32;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --border-color: #e2e8f0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--brand-blue);
    margin-top: 48px;
    margin-bottom: 24px;
}

h2 { font-size: 36px; }
h3 { font-size: 28px; }

p {
    margin-bottom: 24px;
}

a {
    color: var(--brand-blue);
    text-decoration: none;
}

a:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 10px 30px rgba(58, 94, 168, 0.08);
}

ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

li {
    margin-bottom: 12px;
}

/* Custom Bullet List */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background-color: var(--brand-red);
    border-radius: 2px;
}

.custom-list li strong {
    color: var(--text-primary);
}

/* Two column list for long items */
.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    list-style: none;
    padding-left: 0;
}

.two-col-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.two-col-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: bold;
}

/* Layout */
.hero {
    position: relative;
   
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.9)), url('./../images/av-solution.webp') center/cover;
    text-align: center;
    padding: 100px 24px;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 900px;
    padding:0 !important;
}

.badge {
    display: inline-block;
    background-color: var(--brand-red);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 24px;
}

/* Table Design */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(58, 94, 168, 0.05);
    border: 1px solid var(--border-color);
}

.custom-table th {
    background-color: var(--brand-blue);
    color: #ffffff;
    padding: 16px 24px;
    text-align: left;
    font-family: var(--font-heading);
    border-top: 3px solid var(--brand-red);
}

.custom-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.custom-table tr:nth-child(even) {
    background-color: #fafbfc;
}

.custom-table tr:hover {
    background-color: var(--bg-card);
}

.custom-table td strong {
    color: var(--brand-blue);
}

/* FAQ Accordion */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    padding: 24px 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--brand-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--brand-red);
}

.faq-icon {
    color: var(--brand-red);
    transition: transform 0.3s;
}

.faq-answer {
    padding-bottom: 24px;
    color: var(--text-secondary);
    display: none;
}

/* CTA Box */
.cta-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--brand-blue);
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(58, 94, 168, 0.05);
}

.cta-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--brand-blue);
}

.cta-box p {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.btn-primary {
    display: inline-flex;
    background-color: var(--brand-red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #d13226;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .two-col-list { grid-template-columns: 1fr; }
    .custom-table, .custom-table tbody, .custom-table tr, .custom-table td, .custom-table th {
        display: block;
    }
    .custom-table tr { margin-bottom: 16px; }
    .custom-table th { display: none; }
    .custom-table td { 
        padding: 12px;
        position: relative;
    }
}
