/* Open Access Page Specific Styles */
/* Common styles are loaded from pages.css */

/* Understanding Open Access - Two Column Layout */
.understanding-section {
    margin-bottom: 50px;
}

.understanding-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.understanding-card.criteria {
    border-top-color: #F37039;
}

.understanding-card.requirements {
    border-top-color: #002245;
}

.understanding-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.understanding-card.criteria:hover {
    background: #fff5f2;
    border-left: 4px solid #F37039;
}

.understanding-card.requirements:hover {
    background: #f8f9fa;
    border-left: 4px solid #002245;
}

.understanding-card h4 {
    color: #002245;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.understanding-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.understanding-card ul li {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.understanding-card ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #F37039;
    font-size: 14px;
}

.understanding-card.requirements ul li:before {
    color: #002245;
}

/* Why Needed Section - Icon Grid */
.why-needed-section {
    margin-bottom: 50px;
}

.need-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.need-item:nth-child(odd) {
    border-top-color: #F37039;
}

.need-item:nth-child(even) {
    border-top-color: #002245;
}

.need-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.need-item:nth-child(odd):hover {
    background: #fff5f2;
}

.need-item:nth-child(even):hover {
    background: #f8f9fa;
}

.need-item h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.need-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Advantages Section - Two Column Lists */
.advantages-section {
    margin-bottom: 50px;
}

.advantage-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.advantage-card.authors {
    border-top: 4px solid #F37039;
}

.advantage-card.users {
    border-top: 4px solid #002245;
}

.advantage-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.advantage-card.authors:hover {
    background: #fff5f2;
    border-left-color: #F37039;
}

.advantage-card.users:hover {
    background: #f8f9fa;
    border-left-color: #002245;
}

.advantage-card h4 {
    color: #002245;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.advantage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-card ul li {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.advantage-card ul li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.advantage-card.authors ul li:before {
    color: #F37039;
}

.advantage-card.users ul li:before {
    color: #002245;
}

/* Key Benefits Grid */
.benefits-grid {
    margin-bottom: 50px;
}

.benefit-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
    background: #fff5f2;
    border-left-color: #F37039;
}

.benefit-item i {
    font-size: 28px;
    color: #F37039;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: #002245;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Impact Stats */
.impact-section {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.impact-item {
    text-align: center;
    padding: 20px;
}

.impact-item h4 {
    font-size: 18px;
    color: #002245;
    font-weight: 600;
    margin-bottom: 10px;
}

.impact-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section,
    .understanding-card,
    .advantage-card {
        padding: 30px 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
