#student-activities div.content p { margin-top:15px !important;}
#student-activities div.content h4,
#student-activities div.content h3 { margin-top:25px !important;}

/* Button Styles */
.elementor-button-wrapper {
    margin: 30px 0;
    text-align: center;
}

.elementor-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1e73be;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #1e73be;
    min-width: 250px;
    position: relative;
}

.elementor-button:before {
    content: "📄";
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
}

.elementor-button:hover {
    background-color: #135799;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    border-color: #135799;
}

.elementor-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.elementor-button-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.elementor-button-text {
    line-height: 1.4;
}

/* Button Group Styles */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.button-group .elementor-button-wrapper {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .elementor-button {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 14px 28px;
    }
}