/* download.css */
.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 4vw;
}

.section-title {
text-align: center;
font-size: 1.6vw;
color: var(--brand-blue);
text-transform: uppercase;
font-weight: 800;
letter-spacing: 0.1vw;
margin-bottom: 1.5vw;
margin-top: 3vw;
}

/* COA Section */
.coa-section {
padding: 3vw 0 1vw 0;
background-color: #f7f9fc; /* Soft greyish blue background */
}

.search-box {
background: #ffffff; /* Solid white to pop against the background */
border-radius: 0.3vw;
padding: 2vw;
display: flex;
justify-content: center;
align-items: center;
gap: 1vw;
border: none;
}

.search-box label {
font-weight: 700;
color: var(--brand-blue);
font-size: 1vw;
text-transform: uppercase;
}

.search-box input {
padding: 0.8vw 1vw;
border: 1px solid #e2e8f0; /* Very subtle inner border so input is visible on white */
border-radius: 0.2vw;
font-size: 0.9vw;
width: 250px;
max-width: 100%;
color: #334155;
background-color: #ffffff;
}

.search-box input:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(166, 206, 57, 0.4);
border-color: transparent;
}

.btn-search {
background-color: var(--brand-green);
color: var(--brand-blue);
border: none;
padding: 0.8vw 2vw;
border-radius: 0.2vw;
font-size: 0.9vw;
font-weight: 800;
cursor: pointer;
transition: all 0.2s ease;
text-transform: uppercase;
}

.btn-search:hover {
background-color: var(--brand-blue);
color: #ffffff;
}

/* Accordion Section */
.specs-section {
padding-bottom: 5vw;
background-color: #f7f9fc; /* Match COA section background */
padding-top: 1vw;
}

.accordion {
display: flex;
flex-direction: column;
gap: 1.2vw;
}

.accordion-item {
background-color: #ffffff;
border-radius: 0.4vw;
box-shadow: 0 0.2vw 0.5vw rgba(0, 0, 0, 0.02);
transition: all 0.2s ease;
overflow: hidden;
}

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

.accordion-item:hover {
background-color: #fafbfc;
}

.accordion-item.active {
border-left: none;
}

.accordion-header {
width: 100%;
background: none;
border: none;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1vw 0.5vw;
font-size: 1vw;
font-weight: 700;
color: #334155;
cursor: pointer;
text-transform: uppercase;
font-family: inherit;
}

.accordion-header:hover {
color: var(--brand-blue);
}

.accordion-header.active {
color: var(--brand-blue);
background-color: transparent;
}

.accordion-header .icon {
font-size: 1.2vw;
font-weight: bold;
color: #334155;
}

.accordion-header.active .icon {
background-color: var(--brand-blue);
color: #ffffff;
width: 1.4vw;
height: 1.4vw;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0.1vw;
line-height: 1;
}

.accordion-content {
display: none;
background-color: #ffffff;
padding: 0.5vw 1vw 1.5vw;
}

.accordion-item.active .accordion-content {
display: block;
animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}

.spec-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.2vw 0;
border-bottom: 1px solid #f1f5f9;
}

.spec-row:last-child {
border-bottom: none;
padding-bottom: 0;
}

.spec-name {
font-weight: 700;
color: #475569;
font-size: 0.95vw;
text-transform: uppercase;
flex: 1;
letter-spacing: 0.03vw;
}

.spec-actions {
display: flex;
gap: 1vw;
}

.spec-actions .action-link {
display: flex;
align-items: center;
justify-content: center;
padding: 0.6vw 1.5vw;
color: var(--brand-blue);
text-decoration: none;
transition: all 0.3s ease;
font-size: 0.85vw;
font-weight: 700;
border-radius: 2vw;
background-color: #e2e8f0;
}

.spec-actions .action-link:hover {
background-color: var(--brand-green);
color: var(--brand-blue);
transform: translateY(-2px);
box-shadow: 0 0.3vw 0.8vw rgba(166, 206, 57, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1020px) {
.section-title { font-size: 3.5vw; }
.section-title::after { width: 8vw; height: 0.5vw; }

.search-box {
flex-direction: column;
padding: 4vw;
}
.search-box label { font-size: 2vw; }
.search-box input { font-size: 1.8vw; padding: 2vw; width: 100%; }
.btn-search { font-size: 1.8vw; padding: 2vw 4vw; width: 100%; }

.accordion-header { font-size: 2vw; padding: 3vw; }
.accordion-header .icon { font-size: 3vw; }
.accordion-header.active .icon { width: 4vw; height: 4vw; }

.spec-row { flex-direction: column; align-items: flex-start; gap: 2vw; padding: 3vw 0; }
.spec-name { font-size: 1.8vw; }
.spec-actions { width: 100%; justify-content: flex-start; gap: 2vw; }
.spec-actions .action-link { font-size: 1.6vw; padding: 1.5vw 3vw; flex: 1; }
}

@media (max-width: 720px) {
.section-title { font-size: 6vw; margin-top: 8vw; margin-bottom: 6vw; }
.section-title::after { width: 12vw; height: 1vw; }

.search-box label { font-size: 4vw; }
.search-box input { font-size: 3.5vw; padding: 3vw 4vw; border-radius: 6vw; }
.btn-search { font-size: 3.5vw; padding: 3vw 6vw; border-radius: 6vw; }

.accordion-header { font-size: 3.5vw; padding: 4vw; }
.accordion-header .icon { font-size: 5vw; }
.accordion-header.active .icon { width: 7vw; height: 7vw; }

.spec-name { font-size: 3.5vw; }
.spec-actions { flex-direction: row; }
.spec-actions .action-link { font-size: 3vw; padding: 2.5vw 4vw; }
}
