/* ============================================================
   SUMMARY PAGE STYLES
   ============================================================ */

.summary-intro {
    padding: 60px 0 20px;
}

.full-width-hero {
    width: 100%;
    height: 500px;
    margin: 40px 0;
    overflow: hidden;
}

.full-width-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Language Switcher Tabs */
.lang-switcher {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 15px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--color-line);
    color: var(--color-text);
    padding: 8px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* Statement Content Blocks */
.lang-block {
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s ease-in;
}

.lang-block.active {
    display: block; /* Shown when active */
}

.statement-title {
    font-size: 2.2rem;
    color: var(--color-accent-strong);
    margin-bottom: 1.5rem;
}

.statement-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    opacity: 0.9;
    text-align: justify;
}

.statement-text p {
    margin-bottom: 1.5rem;
}

.statement-text ul {
    /* Pushes the entire list to the right */
    padding-left: 2.5rem; 
    margin-bottom: 1.5rem;
    /* Ensures bullets stay in the gutter created by padding */
    list-style-position: outside; 
}

.statement-text li {
    margin-bottom: 0.8rem;
    /* Adds a small gap between the bullet and the text */
    padding-left: 10px; 
    line-height: 1.6;
}

/* Optional: If you want the bullets to match your accent color */
.statement-text li::marker {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.statement-signature {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-line);
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   DOWNLOAD BUTTONS LAYOUT
   ============================================================ */

.download-container {
    margin-top: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--color-line);
    text-align: center;
}

.download-header {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--color-accent);
}

.download-button-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Enhancing the existing btn-secondary for this context */
.download-button-row .btn-secondary {
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.download-button-row .btn-secondary:hover {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}


/* ============================================================
   DYNAMIC WINDOW
   ============================================================ */

@media (max-width: 768px) {
    .full-width-hero { height: 300px; }
    .statement-title { font-size: 1.6rem; }
}

@media (max-width: 600px) {
    .download-button-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .download-container {
        padding: 25px;
    }
}