        .container {
            max-width: 1100px;
            padding: 20px;
            padding-top: 112px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .about-section {
            background-color: #fff;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .about-section h2 {
            font-size: 28px;
            color: #e74c3c;
            text-align: center;
            margin-bottom: 20px;
        }

        .about-section p {
            font-size: 18px;
            line-height: 1.6;
            text-align: justify;
            color: #555;
        }

        .cta-button {
            display: block;
            width: 200px;
            margin: 30px auto;
            padding: 15px 0;
            text-align: center;
            background-color: #e74c3c;
            color: white;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
        }

        .cta-button:hover {
            background-color: #c0392b;
        }
        .dashboard-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .dashboard-card {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .dashboard-card .card-title {
        font-size: 0.9rem;
    }

    .dashboard-card .card-text {
        font-size: 1.4rem;
    }
}
