
.ccf {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #333;
}

.ccf header {
    text-align: center;
    margin-bottom: 3rem;
}

.ccf header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}
.ccf-description {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    line-height: 1.6;
    text-align: center;
    color: #444;
}

.ccf-image {
    margin: 25px 0;
    text-align: center;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .ccf-description {
        font-size: 1.1em;
    }

    .responsive-image {
        max-width: 80%;
    }
}

.resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.resource-card h3 {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.status {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.status h2 {
    margin-top: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.online .dot {
    background-color: #2ecc71;
}

.status-indicator.offline .dot {
    background-color: #e74c3c;
}
