@font-face {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 400;
    src: url(SourceSansPro.woff2) format("woff2");
}
/* Modern CSS Variables for easy scaling & consistent design tokens */
:root {
    --primary: 	#284796;       	/* ELDICO Blue */
    --light: 	#405fae; 	/* Primary -25% lighter*/
    --accent: 	#e52a1a;        /* ELDICO Red */
    --dark: 	#293d6f;        /* Primary +25% darker */
    --lighter:  #a5b1ce;        /* ELDICO-Blue light */
    --verylight:#dddeed;        /* ELDICO-Blue very light */
    --gray: 	#575756;        /* Muted body text grey */
    --border: 	#E2E8F0;        /* Subtle divider borders */
    --radius: 	8px;            /* Consistent component corners */
    --red: 	#e52a1a;
    --blue: 	#284796;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #F1F5F9;
}

/* Header & Navigation */
header {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 400;
    border-left: 1px solid var(--border);
    padding-left: 0.5rem;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    margin-left: 2rem;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--primary);
}

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #223062 100%);
    color: #FFFFFF;
    padding: 2rem 2rem;
    text-align: center;
    border-top: 4px solid var(--accent);
    border-bottom: 4px solid var(--accent);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    color: #E2E8F0;
    margin-bottom: 0.5rem;
}

/* Main Download Content Layout */
main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

.card {
    background: #FFFFFF;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.badge {
    align-self: flex-start;
    background: #E0F2FE;
    color: var(--light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.25rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-badge {
    align-self: flex-start;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.meta-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.meta-list li {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.meta-list span {
    color: var(--gray);
}

.btn {
    display: inline-block;
    background-color: var(--red);
    color: #FFFFFF;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--light);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    margin-top: 0.5rem;
}

.btn-secondary:hover {
    background-color: #F0F7FF;
    color: var(--light);
}

/* Company Profile Block */
.company-section {
    background-color: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 4rem;
    padding: 3rem;
}

.company-section h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.company-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .company-grid {
	grid-template-columns: 1fr;
	gap: 2rem;
    }
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.partners-log {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

/* Corporate Footer */
footer {
    background-color: #284796;
    color: #9a9dca;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    font-size: 0.9rem;
    border-top: 4px solid var(--accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    border-bottom: 1px solid #;
    padding-bottom: 3rem;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #9a9dca;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

/* Accordion Container */
.accordion-container {
  border: 1px solid #ddd;
  border-radius: 4px;
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Accordion Header/Button */
.accordion-header {
  background-color: #f1f1f1;
  color: #333;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #e2e2e2;
}

/* Arrow rotation */
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-icon {
  transition: transform 0.3s ease;
}

/* Accordion Content (Hidden by default) */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #ffffff;
}

/* File List Styles */
.file-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.file-list li {
  border-bottom: 1px solid #eee;
  font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}


.file-list li:last-child {
  border-bottom: none;
}

.file-list li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  transition: background-color 0.2s;
    color: var(--red);
}

.file-list li a:hover {
  background-color: #f9f9f9;
  text-decoration: underline;
}

.file-list li.loading, .file-list li.error {
  padding: 15px 20px;
  color: #666;
  font-style: italic;
}
