/* style/resources.css */
/* Page-specific styles with prefix .page-resources */
.page-resources {
    font-family: 'Arial', sans-serif;
    color: #000000;
    background-color: #ffffff;
}

.page-resources .hero-section {
    background: linear-gradient(135deg, #FF0000, #FFFFFF);
    padding: 80px 0;
    text-align: center;
}

.page-resources .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-resources .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-resources .btn {
    background-color: #FF0000;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.page-resources .btn:hover {
    background-color: #cc0000;
}

.page-resources .content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FF0000;
}

.page-resources .section-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-resources .product-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.page-resources .features-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.page-resources .feature-item {
    flex: 1 1 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.page-resources .feature-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FF0000;
}

.page-resources .feature-description {
    font-size: 1rem;
    line-height: 1.5;
}

.page-resources .news-section {
    margin-top: 50px;
}

.page-resources .news-item {
    margin-bottom: 40px;
}

.page-resources .news-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.page-resources .news-date {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 10px;
}

.page-resources .news-description {
    font-size: 1rem;
    margin-bottom: 15px;
}

.page-resources .call-to-action {
    background-color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
}

.page-resources .cta-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
}