@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&display=swap');

:root {
    /* Natural Earthy Color Palette */
    --bg-light: #fbfaf5;          /* Warm linen/cream background */
    --bg-surface: #ffffff;        /* Pure white for panels & cards */
    --border-color: #e2dacd;      /* Sandstone beige border */
    
    --text-dark: #1c231e;         /* Deep spruce green/charcoal */
    --text-muted: #4e5a51;        /* Muted moss needle green-gray */
    --text-light: #ffffff;
    
    /* Accents */
    --accent-green: #20402b;      /* Primary: Deep spruce green */
    --accent-green-rgb: 32, 64, 43;
    --accent-terracotta: #be553c; /* Secondary: Terracotta clay */
    --accent-gold: #c48e43;       /* Detail: Sunburst wheat gold */
    --accent-slate: #5e6f65;      /* Secondary slate stone green */
    
    --accent-color: var(--accent-green);
    
    /* Typography */
    --font-headings: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    
    /* UI tokens */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 4px 20px rgba(28, 35, 30, 0.04);
    --shadow-md: 0 10px 30px rgba(28, 35, 30, 0.06);
    --shadow-lg: 0 20px 40px rgba(28, 35, 30, 0.1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.site-header {
    background: rgba(251, 250, 245, 0.95);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-green);
    text-decoration: none;
    transition: var(--transition);
}

.site-logo i {
    color: var(--accent-terracotta);
    font-size: 1.5rem;
    transition: var(--transition);
}

.site-logo:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.site-logo span {
    color: var(--accent-gold);
}

.site-nav {
    display: flex;
    gap: 0.4rem;
}

.nav-link {
    font-family: var(--font-body);
    white-space: nowrap;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 550;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i {
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--accent-green);
    background-color: rgba(32, 64, 43, 0.05);
    border-color: rgba(32, 64, 43, 0.1);
}

.nav-link.active {
    color: #ffffff;
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 4px 10px rgba(32, 64, 43, 0.15);
}

.nav-toggle {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-family: var(--font-headings);
    font-size: 0.85rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* Global Heading Reset for tight line heights */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(28, 35, 30, 0.4), rgba(28, 35, 30, 0.4)), url('images/srbija_planinsko_selo.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    border-bottom: 3px double var(--border-color);
    color: white;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 35, 30, 0.45); /* Overlay to make text readable */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    opacity: 0.95;
}

/* Category cards list */
.support-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.section-title {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.2rem 1.8rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.support-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-icon {
    font-size: 2.2rem;
    color: var(--accent-terracotta);
    margin-bottom: 0.5rem;
}

.support-title {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-green);
}

.support-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Articles Section */
.articles-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.cat-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.cat-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 550;
    border-radius: 30px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.cat-btn:hover {
    color: var(--accent-green);
    background: rgba(32, 64, 43, 0.05);
}

.cat-btn.active {
    background: var(--accent-green);
    color: #ffffff;
    border-color: var(--accent-green);
    box-shadow: 0 4px 10px rgba(32, 64, 43, 0.15);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Article Card */
.article-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.card-img-link {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: block;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .card-img {
    transform: scale(1.05);
}

.card-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-green);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.8rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-title {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--accent-green);
    transition: var(--transition);
}

.article-card:hover .card-title {
    color: var(--accent-terracotta);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.card-footer-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.article-card:hover .card-footer-link {
    color: var(--accent-green);
    padding-left: 3px;
}

/* Article Template */
.progress-bar-container {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(226, 218, 205, 0.3);
    z-index: 99;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-terracotta);
    transition: width 0.1s ease;
}

.article-header {
    background: linear-gradient(135deg, var(--accent-green), #112518);
    color: white;
    padding: 4.5rem 0 3.5rem;
    border-bottom: 3px solid var(--accent-gold);
}

.article-category {
    background: var(--accent-terracotta);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-title {
    font-family: var(--font-headings);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .article-layout {
        grid-template-columns: 2.8fr 1.2fr;
    }
}

.article-body-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    min-width: 0; /* Prevents container from stretching in CSS Grid layouts */
    max-width: 100%;
}

@media (max-width: 576px) {
    .article-body-content {
        padding: 1.5rem 1rem;
    }
}

.article-cover-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

/* Alert Block styling */
.alert-block {
    background: #f4f6f4;
    border-left: 4px solid var(--accent-green);
    padding: 1.2rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 2rem 0;
}

.alert-block-note {
    background: #fbfaf2;
    border-left-color: var(--accent-gold);
}

.alert-block-important {
    background: #fdf5f3;
    border-left-color: var(--accent-terracotta);
}

.alert-title {
    font-weight: 700;
    font-family: var(--font-headings);
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.summary-bullets-list {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
}

.summary-bullets-list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.summary-bullets-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-terracotta);
    font-weight: bold;
}

/* Article Markdown Content Body styles */
.article-body {
    font-size: 1.1rem;
    line-height: 1.85;
}

.article-body h2 {
    font-family: var(--font-headings);
    font-size: 1.7rem;
    color: var(--accent-green);
    margin: 2.5rem 0 1rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-body h3 {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    color: var(--accent-terracotta);
    margin: 2rem 0 0.8rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.4rem;
}

.article-body blockquote {
    font-style: italic;
    border-left: 4px solid var(--accent-slate);
    padding-left: 1.2rem;
    color: var(--text-muted);
    margin: 1.8rem 0;
}

.article-body strong {
    color: var(--accent-green);
}

/* Encyclopedic Infobox */
.infobox {
    background: #fbfaf2;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent-green);
    border-radius: var(--border-radius-sm);
    padding: 1.2rem;
    margin: 0 0 1.5rem 0;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 576px) {
    .infobox {
        float: right;
        width: 320px;
        margin: 0 0 1.5rem 1.8rem;
    }
}

.infobox-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-green);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.infobox-table {
    width: 100%;
    border-collapse: collapse;
}

/* Override global th/td styles for the infobox table to prevent dark green background inheritance */
.article-body .infobox th,
.article-body .infobox td,
.infobox-table th,
.infobox-table td {
    background-color: transparent !important;
    background: none !important;
    border-bottom: none !important;
    padding: 0.5rem 0 !important;
    text-align: left;
    vertical-align: top;
}

.article-body .infobox th,
.infobox-table th {
    color: var(--accent-terracotta) !important;
    font-weight: 600 !important;
    width: 42% !important;
    padding-right: 10px !important;
}

.article-body .infobox td,
.infobox-table td {
    color: var(--text-dark) !important;
}

.article-body .infobox tr,
.infobox-table tr {
    border-bottom: 1px solid rgba(226, 218, 205, 0.5) !important;
}
.article-body .infobox tr:last-child,
.infobox-table tr:last-child {
    border-bottom: none !important;
}

/* Table Wrapper and Styling */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    max-width: 100%;
}

.table-wrapper table {
    width: 100%;
    min-width: 600px; /* Prevents table squishing on mobile, prompting horizontal scrolling within the wrapper */
    border-collapse: collapse;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

.article-body th {
    background-color: var(--accent-green);
    color: white;
    font-weight: 600;
    padding: 0.8rem 1rem;
    white-space: normal;
    word-break: break-word;
}

.article-body td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    white-space: normal;
    word-break: break-word;
}

.article-body tr:nth-child(even) td {
    background-color: rgba(226, 218, 205, 0.15);
}

.article-body tr:last-child td {
    border-bottom: none;
}

.article-hr {
    border: none;
    border-top: 1px dashed var(--border-color);
    margin: 2.5rem 0;
}

/* References Section */
.references-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

.references-title {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.references-list {
    list-style-type: decimal;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.references-list li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.references-list a {
    color: var(--accent-terracotta);
    text-decoration: none;
    word-break: break-all;
}

.references-list a:hover {
    text-decoration: underline;
}

/* Footnotes superscript link */
.footnote-ref {
    font-size: 0.75rem;
    vertical-align: super;
    font-weight: bold;
    color: var(--accent-terracotta);
    text-decoration: none;
    margin-left: 2px;
    padding: 0 2px;
}

.footnote-ref:hover {
    color: var(--accent-green);
    background: rgba(32, 64, 43, 0.1);
}

/* FAQs Widget Accordion */
.faq-item {
    background: #fbfaf5;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.faq-question {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem;
    cursor: pointer;
    background: var(--bg-surface);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-green);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(32, 64, 43, 0.03);
    color: var(--accent-terracotta);
}

.faq-answer {
    padding: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    background: #ffffff;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.8rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.widget-title {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--accent-terracotta);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-widget {
    max-height: 450px;
    overflow-y: auto;
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-item-h2 {
    font-weight: 600;
    font-size: 0.9rem;
}

.toc-item-h3 {
    padding-left: 1rem;
    font-size: 0.85rem;
    opacity: 0.85;
}

.toc-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.toc-link:hover {
    color: var(--accent-terracotta);
    padding-left: 3px;
}

.sidebar-link-asistel {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.sidebar-link-asistel:hover {
    color: var(--accent-green);
    padding-left: 4px;
}

.sidebar-link-asistel i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

/* Callout Section in Footer */
.support-callout-section {
    padding: 3rem 0 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.support-callout-box {
    background: linear-gradient(135deg, var(--accent-green), #142b1d);
    color: white;
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
    .support-callout-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.support-callout-content {
    flex: 1;
}

.support-callout-content h3 {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-callout-content h3 i {
    color: var(--accent-gold);
}

.support-callout-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.support-callout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    width: 100%;
}

@media (min-width: 992px) {
    .support-callout-grid {
        width: auto;
        min-width: 450px;
    }
}

.support-grid-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 550;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.support-grid-link:hover {
    background: var(--bg-surface);
    color: var(--accent-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.support-grid-link i {
    color: var(--accent-gold);
}

/* Site Footer */
.site-footer {
    background: #152219;
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
    border-top: 3px solid var(--accent-gold);
}

.footer-grid-asistel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid-asistel {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-col-mission {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-mission-text {
    line-height: 1.7;
    opacity: 0.8;
}

.footer-heading-asistel {
    color: #ffffff;
    font-family: var(--font-headings);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading-asistel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-terracotta);
}

.footer-links-asistel {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-asistel li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-asistel li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-links-asistel li a i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.footer-bottom-asistel {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Navigation Menu Responsive handling */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .site-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 2px solid var(--border-color);
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow-md);
        gap: 0.8rem;
    }
    
    .site-nav.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.7rem 1.2rem;
        border-radius: 8px;
    }
}
