@font-face {
	font-family: 'estedadv';
	src: url('/assets/font/estedad/estedad-fd-var.woff2') format('woff2');
	font-weight: 100 900;
	font-display: swap;
}
@font-face {
	font-family: estedad;
	src: url('/assets/font/estedad/estedad-FD-Regular.woff2') format('woff2');
}
@font-face {
	font-family: estedad;
	src: url('/assets/font/estedad/estedad-FD-Bold.woff2') format('woff2');
	font-weight: 700;
}
body {
	font-family: estedad, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	direction: rtl;
}

h1, h2, h3, strong, b { font-weight: bold; }

:root {
    --primary: #0056B3;
    --primary-light: #0047AB;
    --accent: #00AEEF;
    --accent-gradient: linear-gradient(135deg, #00BCD4, #4DD0E1);
    --light-gray: #F5F7FA;
    --white: #FFFFFF;
    --text: #2D3748;
    --success: #48BB78;
    --warning: #ED8936;
    --danger: #F56565;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* ================================ */
/* Navbar */

/* ================================ */
/* Questions */
.faq-section {
    background: white;
    padding: 80px 0;
}
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.accordion-button {
    font-weight: 700;
    padding: 20px 25px;
    border-radius: 12px !important;
    background-color: white;
    color: var(--primary);
    box-shadow: none;
    font-size: 1.05rem;
    transition: var(--transition);
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
    transform: rotate(-90deg);
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23001F61'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
}
.accordion-body {
    padding: 20px 25px;
    color: #444;
    line-height: 1.8;
}
/* ================================ */
/* Footer */
footer {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    color: #2c2727;
    margin-top: auto;
    margin-bottom: 0;
    padding: 40px 0 10px 0;
}
.footer-section span {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.footer-section span::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #007bff;
    margin-top: 5px;
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #202528;
    transition: color 0.3s, text-decoration 0.3s;
    text-decoration: none;
}
.footer-section ul li a:hover {
    color: #007bff;
}
.footer-section img {
    width: 120px;
    margin-bottom: 15px;
}
.footer-section .phone {
    font-weight: bold;
    margin-top: 10px;
    font-size: 14px;
}
.license-section p {
    color: #ddd;
    font-size: 14px;
}
.footer-section .d-flex {
    gap: 15px;
}

/* ================================ */