/* Index Page Styles */

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Action Buttons */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 100%;
    background-color: #6a8f2b;
}

.action-text h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    background-color: #6a8f3b;
}

@media (max-width: 768px) {
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .action-btn {
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 14px;
    }

    .action-text h3 {
        font-size: 16px;
    }
}