/* PNRR Page Specific Styles */
.pnrr-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 15, 0.95) 10%, rgba(15, 15, 15, 0.98) 100%);
    color: var(--text-primary);
}

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

.pnrr-banner-wrapper {
    width: 100%;
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.pnrr-banner-img {
    max-width: 100%;
    height: auto;
}

.project-header {
    text-align: center;
    margin-bottom: 60px;
}

.project-header h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-id {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

    .pnrr-banner-wrapper {
        padding: 20px;
    }
}

.project-info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.project-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.project-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.pnrr-list {
    list-style: none;
    padding: 0;
}

.pnrr-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pnrr-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.details-table-wrapper {
    margin-bottom: 60px;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 0, 0.2);
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
}

.details-table th,
.details-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.details-table th {
    background: rgba(212, 165, 0, 0.1);
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.details-table td {
    color: var(--text-primary);
    font-weight: 500;
}

.project-footer {
    text-align: center;
    border-top: 1px solid rgba(212, 165, 0, 0.2);
    padding-top: 40px;
    margin-top: 40px;
}

.project-footer p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.project-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.project-footer a:hover {
    text-decoration: underline;
}

.pnrr-disclaimer {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 25px;
    color: var(--text-muted);
}