/* ===================== RESET & BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    background: #1a1a1a;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================== HEADER ===================== */
.header {
    background-color: #183828;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.dept-name {
    color: #c8a84b;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dept-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===================== NAVBAR ===================== */
.navbar ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    display: block;
    transition: color 0.2s;
    text-transform: uppercase;
}

.navbar ul li a:hover {
    color: #c8a84b;
}

.forum-btn {
    background-color: #c8a84b;
    color: #183828 !important;
    border-radius: 4px;
    padding: 8px 14px !important;
    font-weight: 700 !important;
}

.forum-btn:hover {
    background-color: #b8943a !important;
    color: #183828 !important;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #183828;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-top: 2px solid #c8a84b;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.dropdown-menu li a {
    padding: 10px 16px !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgba(200, 168, 75, 0.15);
    color: #c8a84b !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown nyíl forgás */
.dropdown > a i {
    transition: transform 0.2s;
    font-size: 10px;
    margin-left: 4px;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8a84b;
    margin-bottom: 30px;
}

.btn-hero {
    background: #c8a84b;
    color: #183828;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s;
    display: inline-block;
}

.btn-hero:hover {
    background: #b8943a;
}

/* ===================== NEWS SECTION ===================== */
.news-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.news-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
}

.news-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c8a84b;
    margin: 10px auto 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.news-card {
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 20px;
}

.news-date {
    font-size: 12px;
    color: #c8a84b;
    display: block;
    margin-bottom: 8px;
}

.news-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.news-card-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-read {
    display: inline-block;
    background: #183828;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-read:hover {
    background: #c8a84b;
}

.btn-all {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: #183828;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.btn-all:hover {
    background: #c8a84b;
}

.no-news {
    text-align: center;
    color: rgba(255,255,255,0.4);
    grid-column: 1/-1;
}

/* ===================== FOOTER ===================== */
.footer {
    background: #183828;
    color: #ffffff;
    padding: 50px 0 0;
}

.footer-inner {
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 12px;
}

.footer-logo p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links h4 {
    color: #c8a84b;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #c8a84b;
}

.footer-bottom {
    text-align: center;
    padding: 16px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .navbar { display: none; }
    .navbar.open { display: flex; }
    .navbar ul { flex-direction: column; padding: 10px 0; }
    .hamburger { display: flex; }
    .news-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 28px; }
    .footer-inner { flex-direction: column; gap: 30px; }
}

/* ===================== HÍREK OLDAL ===================== */
.page-header {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #183828;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(24,56,40,0.75);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding-bottom: 40px;
}

.page-header-content h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #c8a84b;
}

.page-header-content p {
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.news-page-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-list-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-img {
    flex-shrink: 0;
    width: 300px;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
}

.news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-no-img {
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #444;
}

.news-list-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-list-body .news-date {
    font-size: 12px;
    color: #c8a84b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-list-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.news-list-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-readmore {
    display: inline-block;
    color: #c8a84b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 2px solid #c8a84b;
    padding-bottom: 2px;
    transition: opacity 0.2s;
    width: fit-content;
}

.btn-readmore:hover {
    opacity: 0.7;
}

@media (max-width: 700px) {
    .news-list-item { flex-direction: column; }
    .news-list-img { width: 100%; height: 200px; }
    .single-news-img { height: 220px; }
    .single-news-title { font-size: 24px; }
}

/* ===================== EGYEDI HÍR OLDAL ===================== */
.single-news-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.single-news-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.single-news-img {
    width: 100%;
    height: 400px;              /* fix magasság -> konzisztens banner, nem nyúlik el */
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    margin-bottom: 24px;
    display: block;
}

.single-news-meta {
    color: #c8a84b;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.single-news-meta span {
    margin-right: 20px;
}

.single-news-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
}

.single-news-content {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.btn-back {
    display: inline-block;
    color: #c8a84b;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #c8a84b;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-back:hover {
    background: #c8a84b;
    color: #183828;
}

/* Sidebar */
.single-news-sidebar h3 {
    color: #c8a84b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c8a84b;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-news-item img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.sidebar-news-body span {
    font-size: 11px;
    color: #c8a84b;
    display: block;
    margin-bottom: 4px;
}

.sidebar-news-body p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

.sidebar-news-item:hover .sidebar-news-body p {
    color: #c8a84b;
}

@media (max-width: 900px) {
    .single-news-layout { grid-template-columns: 1fr; }
}


/* ===================== VEZETŐSÉG ===================== */
.staff-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.staff-card {
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 3px solid #c8a84b;
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.staff-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.staff-no-photo {
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #444;
}

.staff-info {
    padding: 20px;
}

.staff-rank {
    display: block;
    color: #c8a84b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.staff-info h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.staff-info p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
}

.no-staff {
    color: rgba(255,255,255,0.4);
    text-align: center;
    grid-column: 1/-1;
    padding: 40px 0;
}

@media (max-width: 900px) {
    .staff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .staff-grid { grid-template-columns: 1fr; }
}

/* ===================== JOIN OLDAL ===================== */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c8a84b;
    margin: 10px auto 0;
}

.join-why {
    padding: 60px 0;
    background: #1a1a1a;
}

.join-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.join-feature {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    border-top: 3px solid #c8a84b;
    transition: transform 0.2s;
}

.join-feature:hover {
    transform: translateY(-4px);
}

.join-feature i {
    font-size: 36px;
    color: #c8a84b;
    margin-bottom: 16px;
}

.join-feature h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.join-feature p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
}

.join-jobs {
    padding: 60px 0;
    background: #222;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-item {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 24px;
    border-left: 4px solid #c8a84b;
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.job-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.job-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.job-sworn { background: #183828; color: #c8a84b; }
.job-civilian { background: #2c3e50; color: #74b9ff; }

.job-item p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-apply {
    display: inline-block;
    background: #c8a84b;
    color: #183828;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.btn-apply:hover { background: #b8943a; }

.no-jobs {
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 40px 0;
}

.join-process {
    padding: 60px 0;
    background: #1a1a1a;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    width: 200px;
    border-top: 3px solid #c8a84b;
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: #c8a84b;
    margin-bottom: 12px;
}

.process-step h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    line-height: 1.5;
}

.process-arrow {
    color: #c8a84b;
    font-size: 20px;
    padding: 0 16px;
}

@media (max-width: 900px) {
    .join-features { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); }
}


/* ===================== CONTACT OLDAL ===================== */
.contact-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2,
.contact-form-wrap h2 {
    color: #c8a84b;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c8a84b;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 20px;
    color: #c8a84b;
    margin-top: 2px;
    width: 24px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
}

.contact-info-item a {
    color: #c8a84b;
}

.contact-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 24px 0;
}

.contact-info h3 {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-quick-links li {
    margin-bottom: 10px;
}

.contact-quick-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s;
}

.contact-quick-links a i {
    color: #c8a84b;
    margin-right: 8px;
    font-size: 11px;
}

.contact-quick-links a:hover {
    color: #c8a84b;
}

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8a84b;
}

.form-group textarea {
    height: 160px;
    resize: vertical;
}

.btn-submit {
    background: #c8a84b;
    color: #183828;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #b8943a;
}

.contact-success {
    background: rgba(24,56,40,0.5);
    border: 1px solid #c8a84b;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: #c8a84b;
}

.contact-success i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.contact-success p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-error {
    background: rgba(231,76,60,0.2);
    border: 1px solid #e74c3c;
    border-radius: 4px;
    padding: 12px 16px;
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}


/* ===================== INFORMÁCIÓK OLDAL ===================== */
.info-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.info-block {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

.info-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid #c8a84b;
}

.info-block-header i {
    font-size: 28px;
    color: #c8a84b;
}

.info-block-header h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

.info-block-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.info-text p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.info-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-stat {
    background: #183828;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border-left: 4px solid #c8a84b;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #c8a84b;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Timeline */
.info-timeline {
    position: relative;
    padding-left: 40px;
}

.info-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(200,168,75,0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c8a84b;
    border: 3px solid #1a1a1a;
}

.timeline-year {
    display: inline-block;
    background: #c8a84b;
    color: #183828;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.timeline-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* Küldetés blokk */
.info-mission {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #183828;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 10px;
}

.info-mission-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(24,56,40,0.85);
}

.info-mission-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
}

.info-mission-content i {
    font-size: 40px;
    color: #c8a84b;
    margin-bottom: 20px;
    display: block;
}

.info-mission-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.info-mission-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ===================== EGYSÉGEK / DIVÍZIÓK ===================== */
.units-section { padding: 60px 0; background: #1a1a1a; }
.units-intro {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}
.units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.unit-card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 28px 24px;
    border-top: 3px solid #c8a84b;
    transition: transform 0.2s, background 0.2s;
}
.unit-card:hover { transform: translateY(-4px); background: #2f2f2f; }
.unit-icon {
    width: 56px; height: 56px;
    border-radius: 10px;
    background: #183828;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #c8a84b;
    margin-bottom: 18px;
}
.unit-card h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}
.unit-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c8a84b;
    background: rgba(200,168,75,0.12);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.unit-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}
@media (max-width: 900px) { .units-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .units-grid { grid-template-columns: 1fr; } }

/* ===================== GYIK ===================== */
.faq-section { padding: 60px 0; background: #1a1a1a; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078';                 /* chevron-down (Font Awesome) */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 13px;
    color: #c8a84b;
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { color: #c8a84b; }
.faq-answer {
    padding: 0 22px 20px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.8;
}
.faq-answer a { color: #c8a84b; }
.faq-answer a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .info-block-content { grid-template-columns: 1fr; }
    .info-stats { flex-direction: row; }
}