/* Main content box */
.resource-container {
    background: #fff;
    max-width: 700px;
    margin: 3.5rem auto 2.5rem auto;
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border: 1px solid #e3e8ee;
    position: relative;
    z-index: 1;
}

/* Decorative accent bar */
.resource-container::before {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, #005fa3 0%, #00c6fb 100%);
    margin-bottom: 1.5rem;
}

/* Heading styles */
.resource-container h1 {
    font-size: 2.3rem;
    margin-bottom: 0.7rem;
    color: #005fa3;
    font-weight: 800;
    letter-spacing: -1px;
}

.resource-container p {
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 1.7rem;
    line-height: 1.6;
}

/* Resource links */
.resource-container ul {
    padding-left: 1.2rem;
    margin: 0;
}

.resource-container li {
    margin-bottom: 1.1rem;
    font-size: 1.13rem;
    line-height: 1.5;
    list-style: disc inside;
}

.resource-container a {
    color: #005fa3;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid #00c6fb33;
    transition: color 0.2s, border 0.2s;
    padding-bottom: 2px;
}

.resource-container a:hover {
    color: #00aaff;
    border-bottom: 2px solid #00c6fb;
    background: #f0f8ff;
    border-radius: 3px;
}

@media (max-width: 800px) {
    .resource-container {
        max-width: 97vw;
        padding: 1.2rem 0.7rem 1.5rem 0.7rem;
    }
    .resource-container h1 {
        font-size: 1.5rem;
    }
}